Skip to content

Instantly share code, notes, and snippets.

@Scriptor
Created November 4, 2014 00:22
Show Gist options
  • Save Scriptor/7d95feb82234a3d4ffea to your computer and use it in GitHub Desktop.
Save Scriptor/7d95feb82234a3d4ffea to your computer and use it in GitHub Desktop.
function sum(x){
return function(y){
return x + y;
};
}
sum(2)(3);
// or alternatively
var sum2 = sum(2);
sum2(3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment