Last active
October 29, 2022 03:42
-
-
Save HallexCosta/81bfdcc8e827fca5ac0f94714917086f to your computer and use it in GitHub Desktop.
Example how to use bounded functions with bind or call
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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