Skip to content

Instantly share code, notes, and snippets.

@achisholm
Last active August 29, 2015 14:01
Show Gist options
  • Save achisholm/71e58fd1c154f7d3665f to your computer and use it in GitHub Desktop.
Save achisholm/71e58fd1c154f7d3665f to your computer and use it in GitHub Desktop.
// Write a function that adds from two invocations.
function addf(x){
return function(y){
return x + y;
}
}
console.log(addf(3) (4));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment