Skip to content

Instantly share code, notes, and snippets.

@cawhitworth
Created August 19, 2014 09:39
Show Gist options
  • Save cawhitworth/202eb5389bf2cf6b3079 to your computer and use it in GitHub Desktop.
Save cawhitworth/202eb5389bf2cf6b3079 to your computer and use it in GitHub Desktop.
var counter = function(start) {
var c = start || 0;
return function(amount) {
c = c + (amount || 1);
return c;
}
}(42);
console.log(counter()); // 43
console.log(counter(5)); // 48
console.log(counter()); // 49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment