Skip to content

Instantly share code, notes, and snippets.

@ionelh
Last active August 6, 2019 18:58
Show Gist options
  • Save ionelh/50747202f80923d651ab3d37f1fd13ce to your computer and use it in GitHub Desktop.
Save ionelh/50747202f80923d651ab3d37f1fd13ce to your computer and use it in GitHub Desktop.
Gist for medium article "How JavaScript Works"
class MyClass {
constructor() {
const myArrowFunction = () => {
console.log(this === window);
};
myArrowFunction();
}
}
var myClassInstance = new MyClass();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment