Skip to content

Instantly share code, notes, and snippets.

@dewey92
Last active February 28, 2019 00:31
Show Gist options
  • Select an option

  • Save dewey92/6dd04faa079d3a9c8c3de8faec302501 to your computer and use it in GitHub Desktop.

Select an option

Save dewey92/6dd04faa079d3a9c8c3de8faec302501 to your computer and use it in GitHub Desktop.
Partial App - JS
const fillNames = firstN => middleN => lastN =>
firstN + middleN + lastN
const a = fillNames('Jihad');
const b = a(' Dzikri')(' Waspada')
b === 'Jihad Dzikri Waspada' // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment