Skip to content

Instantly share code, notes, and snippets.

@lukehedger
Created October 3, 2017 17:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukehedger/61b2de10e53435d1494f476b066bc06c to your computer and use it in GitHub Desktop.
Save lukehedger/61b2de10e53435d1494f476b066bc06c to your computer and use it in GitHub Desktop.
πŸ›
function first(prop1) {
console.log(prop1)
return function (prop2) {
console.log(prop1 + prop2)
}
}
first(1)(2) // => 1, 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment