Created
January 2, 2017 21:45
-
-
Save chrislaughlin/6fa46ae9f1189e2f0c19c6c7a0e7e443 to your computer and use it in GitHub Desktop.
ES6 This context
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this.foo = 'foo'; | |
document.querySelector('.my-div').onclick = () => { | |
console.log(this.foo) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment