Skip to content

Instantly share code, notes, and snippets.

@iamlucianojr
Created October 22, 2018 21:32
Show Gist options
  • Save iamlucianojr/933a2f98095e054e7c7b551c9f108afe to your computer and use it in GitHub Desktop.
Save iamlucianojr/933a2f98095e054e7c7b551c9f108afe to your computer and use it in GitHub Desktop.
currying.js
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