Skip to content

Instantly share code, notes, and snippets.

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