Skip to content

Instantly share code, notes, and snippets.

@VictorMedeiros
Created August 2, 2016 17:52
Show Gist options
  • Save VictorMedeiros/b74d67eb0145c5b173d7588c27e17be7 to your computer and use it in GitHub Desktop.
Save VictorMedeiros/b74d67eb0145c5b173d7588c27e17be7 to your computer and use it in GitHub Desktop.
var button = document.getElementById('myButton');
button.addEventListener('click', () => {
console.log(this === window); // => true
this.innerHTML = 'Clicked button';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment