Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabiobiondi/1938e555a36179f858018a1878b459b0 to your computer and use it in GitHub Desktop.
Save fabiobiondi/1938e555a36179f858018a1878b459b0 to your computer and use it in GitHub Desktop.
ES6 - Class - Preserving context with arrow syntax
class MyClass {
text = 'Mario';
constructor() {
setTimeout(() => console.log(this.text), 1000);
}
}
var a = new MyClass();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment