Skip to content

Instantly share code, notes, and snippets.

@AregSargsyan
Created May 29, 2020 11:38
Show Gist options
  • Save AregSargsyan/3e627ff5d68747b8d149a15054536edd to your computer and use it in GitHub Desktop.
Save AregSargsyan/3e627ff5d68747b8d149a15054536edd to your computer and use it in GitHub Desktop.
save context wit row function
class SayHi {
message = 'HI!'
say= () => console.log(this.message)
};
var sayHi = new SayHi();
setTimeout(sayHi.say);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment