Skip to content

Instantly share code, notes, and snippets.

@AkashRajvanshi
Created September 26, 2019 07:21
Show Gist options
  • Select an option

  • Save AkashRajvanshi/a132641fd07a3b85cb38af879fdaba46 to your computer and use it in GitHub Desktop.

Select an option

Save AkashRajvanshi/a132641fd07a3b85cb38af879fdaba46 to your computer and use it in GitHub Desktop.
const button = document.querySelector('button')
button.addEventListener('click', e => {
console.log(this) // window
console.log(e.currentTarget) // button
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment