Skip to content

Instantly share code, notes, and snippets.

@haltcase
Created November 29, 2017 02:41
Show Gist options
  • Save haltcase/b499a4dea44a49bdb27770a146caa280 to your computer and use it in GitHub Desktop.
Save haltcase/b499a4dea44a49bdb27770a146caa280 to your computer and use it in GitHub Desktop.
function sumOfThreeNumbers (x, y, z) {
return x + y + z
}
// roughly equivalent ways to do the same thing:
const sumPlusTwo = sumOfThreeNumbers.bind(null, 2)
const sumPlusTwo = _.partial(sumOfThreeNumbers, 2) // using lodash
const sumPlusTwo = (y, z) => sumOfThreeNumbers(2, y, z)
sumPlusTwo(4, 4)
// -> 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment