Skip to content

Instantly share code, notes, and snippets.

@jjcall
Created March 26, 2012 21:11
Show Gist options
  • Save jjcall/2209753 to your computer and use it in GitHub Desktop.
Save jjcall/2209753 to your computer and use it in GitHub Desktop.
Trying to understand.
function makeAddFunction(amount) {
function add(number) {
return number + amount;
}
return add;
}
var addTwo = makeAddFunction(2);
var addFive = makeAddFunction(5);
show(addTwo(1) + addFive(1));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment