Skip to content

Instantly share code, notes, and snippets.

@yuppism
Created September 22, 2011 04:04
Show Gist options
  • Save yuppism/1234008 to your computer and use it in GitHub Desktop.
Save yuppism/1234008 to your computer and use it in GitHub Desktop.
クロージャのサンプルコード
function outer(){
var x = 1;
return function (){ // 無名関数
       alert(x);
       x = x + 1;
};
}
var f = outer();
f(); // 1
f(); // 2
f(); // 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment