Skip to content

Instantly share code, notes, and snippets.

@alanyoshida
Last active September 2, 2016 12:23
Show Gist options
  • Save alanyoshida/a075e31189e5d93f24e3412180d2ce5e to your computer and use it in GitHub Desktop.
Save alanyoshida/a075e31189e5d93f24e3412180d2ce5e to your computer and use it in GitHub Desktop.
Javascript Lambda Functions
/* ES5 */
var adder = function(x){
return function(y){
return x+y;
};
}
adder(5)(5)
// 10
/* ES6 */
var adderEs6 = x => y => x+y;
adderEs6(6)(6)
// 12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment