Created
October 22, 2018 21:32
-
-
Save iamlucianojr/933a2f98095e054e7c7b551c9f108afe to your computer and use it in GitHub Desktop.
currying.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function multiply(a) { | |
return (b) => { | |
return (c) => { | |
return a * b * c | |
} | |
} | |
} | |
console.log(multiply(1)(2)(3)) // 6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment