Skip to content

Instantly share code, notes, and snippets.

@KOBA789
Created July 20, 2011 08:08
Show Gist options
  • Select an option

  • Save KOBA789/1094554 to your computer and use it in GitHub Desktop.

Select an option

Save KOBA789/1094554 to your computer and use it in GitHub Desktop.
クロージャ
f = (function (){
var i = 0;
return (function () {
return i++;
})
})()
console.log(f());
console.log(f());
console.log(f());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment