Skip to content

Instantly share code, notes, and snippets.

@jobjo
Created August 29, 2011 15:03
Show Gist options
  • Save jobjo/1178564 to your computer and use it in GitHub Desktop.
Save jobjo/1178564 to your computer and use it in GitHub Desktop.
var createCounter = function() {
var x = 0;
return (
function () {
x = x + 1;
return x;
}
);
}
var next = createCounter();
var x = next();
var y = next();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment