Skip to content

Instantly share code, notes, and snippets.

@resure
Forked from SeqviriouM/func_with_random_brackets
Last active August 29, 2015 13:58
Show Gist options
  • Save resure/10279936 to your computer and use it in GitHub Desktop.
Save resure/10279936 to your computer and use it in GitHub Desktop.
var add = (function () {
var counter = 0;
var f = function (x) {
counter += x;
return f;
};
f.valueOf = function () {
return counter;
};
return f;
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment