Skip to content

Instantly share code, notes, and snippets.

@jessy1092
Created April 3, 2016 13:11
Show Gist options
  • Select an option

  • Save jessy1092/663896f1c37eaeded697230a9750cc94 to your computer and use it in GitHub Desktop.

Select an option

Save jessy1092/663896f1c37eaeded697230a9750cc94 to your computer and use it in GitHub Desktop.
function sum(a) {
function f(b) {
return sum(a + b);
}
f.toString = function() { return a };
return f;
};
var add3 = sum(1)(2);
var result = [1, 2, 3]
.map(add3)
.forEach(alert);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment