Skip to content

Instantly share code, notes, and snippets.

@stvedt
Created February 24, 2017 17:26
Show Gist options
  • Save stvedt/77e857383c7a1298929c135e07a00f49 to your computer and use it in GitHub Desktop.
Save stvedt/77e857383c7a1298929c135e07a00f49 to your computer and use it in GitHub Desktop.
curry.js
var greetCurried = function(greeting) {
return function(name) {
console.log(greeting + ", " + name);
};
};
var greetHello = greetCurried("Hello");
greetHello("Heidi"); //"Hello, Heidi"
greetHello("Eddie"); //"Hello, Eddie"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment