Skip to content

Instantly share code, notes, and snippets.

@cawhitworth
Created August 19, 2014 09:32
Show Gist options
  • Save cawhitworth/cda9ce128acfc1eb7674 to your computer and use it in GitHub Desktop.
Save cawhitworth/cda9ce128acfc1eb7674 to your computer and use it in GitHub Desktop.
var counter = function() {
var c = 0;
return function() {
c = c + 1;
return c;
}
}();
console.log(counter()); // 1
console.log(counter()); // 2
console.log(counter()); // 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment