Skip to content

Instantly share code, notes, and snippets.

@pfftdammitchris
Created September 8, 2019 18:36
Show Gist options
  • Save pfftdammitchris/defb2d8b8240ffc90a4ec91e5a9db436 to your computer and use it in GitHub Desktop.
Save pfftdammitchris/defb2d8b8240ffc90a4ec91e5a9db436 to your computer and use it in GitHub Desktop.
function combineWords(word) {
return function(anotherWord) {
return function(andAnotherWord) {
return `${word} ${anotherWord} ${andAnotherWord}`
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment