Skip to content

Instantly share code, notes, and snippets.

@icecreamliker
Created April 25, 2015 14:46
Show Gist options
  • Save icecreamliker/8b2657a12a86ffec3421 to your computer and use it in GitHub Desktop.
Save icecreamliker/8b2657a12a86ffec3421 to your computer and use it in GitHub Desktop.
invokable function
function calc(x) {
var _sum = x;
var fn = function(y) {
_sum += y;
return arguments.callee;
}
fn.toString = function() {
return _sum;
}
return fn;
}
calc(1);
calc(1)(2)(3)(4); // 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment