Skip to content

Instantly share code, notes, and snippets.

@HallexCosta
Last active October 29, 2022 03:42
Show Gist options
  • Save HallexCosta/81bfdcc8e827fca5ac0f94714917086f to your computer and use it in GitHub Desktop.
Save HallexCosta/81bfdcc8e827fca5ac0f94714917086f to your computer and use it in GitHub Desktop.
Example how to use bounded functions with bind or call
const father = {
name: 'Zeus',
}
const mother = {
name: 'Demeter',
}
const persephone = {
say() {
console.log(`"Persephone" is daughter from "${this.name}"`)
}
}
const sayWhoIsParentOfPersephone = persephone.say.bind(mother) // you can pass variable father to show "Zeus" like father
sayWhoIsParentOfPersephone()
// or
// persephone.say.call(mother)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment