Skip to content

Instantly share code, notes, and snippets.

@samuelpath
Created December 15, 2020 14:36
Show Gist options
  • Save samuelpath/1e70c551bab9f6dd60ae6ed8e1d8755c to your computer and use it in GitHub Desktop.
Save samuelpath/1e70c551bab9f6dd60ae6ed8e1d8755c to your computer and use it in GitHub Desktop.
This binding
const person = {
name: 'Samuel',
talk() {
console.log(`Hello, my name is ${this.name}`);
}
};
function sayMyName(name) {
console.log(`My name is ${this.name}`);
}
sayMyName.bind(person)("john");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment