Skip to content

Instantly share code, notes, and snippets.

@ynonp
Created January 25, 2012 06:05
Show Gist options
  • Save ynonp/1675017 to your computer and use it in GitHub Desktop.
Save ynonp/1675017 to your computer and use it in GitHub Desktop.
js intro
function Counter(max) {
var val = 0;
return function() { return (val < max) ? val++ : false; }
;
}
var c = Counter(10);
while (c()) {
console.log(c());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment