Skip to content

Instantly share code, notes, and snippets.

@hg-pyun
Created September 16, 2018 12:45
Show Gist options
  • Save hg-pyun/1ddbd13375fc68081814ab58dcdb660a to your computer and use it in GitHub Desktop.
Save hg-pyun/1ddbd13375fc68081814ab58dcdb660a to your computer and use it in GitHub Desktop.
currying.07.js
let greetDeeplyCurried = greeting => separator => emphasis => name => console.log(greeting + separator + name + emphasis);
let greetAwkwardly = greetDeeplyCurried("Hello")("...")("?");
greetAwkwardly("haegul"); // Hello...haegul?
let sayHello = greetDeeplyCurried("Hello")(", ");
sayHello(".")("haegul"); // Hello, haegul.
let askHello = sayHello("?");
askHello("haegul"); // Hello, haegul?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment