Skip to content

Instantly share code, notes, and snippets.

@AregSargsyan
Last active May 29, 2020 11:36
Show Gist options
  • Save AregSargsyan/a4642b0746970b5cf06272ef8606f40e to your computer and use it in GitHub Desktop.
Save AregSargsyan/a4642b0746970b5cf06272ef8606f40e to your computer and use it in GitHub Desktop.
Bind context
let sayHi = {
message: 'HI',
say: function() {
console.log(this.message);
}
};
setTimeout(sayHi.say.bind(sayHi));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment