Skip to content

Instantly share code, notes, and snippets.

@drakvuf
Created March 26, 2016 14:30
Show Gist options
  • Save drakvuf/72de4c6de19f18eacc12 to your computer and use it in GitHub Desktop.
Save drakvuf/72de4c6de19f18eacc12 to your computer and use it in GitHub Desktop.
var add = function(x) {
return function(y) {
return x + y;
};
};
var increment = add(1);
var addTen = add(10);
increment(2);
// 3
addTen(2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment