Skip to content

Instantly share code, notes, and snippets.

@kaminski-tomasz
Created August 30, 2020 17:15
Show Gist options
  • Save kaminski-tomasz/674a1f75b63dcf349c81266fb77764eb to your computer and use it in GitHub Desktop.
Save kaminski-tomasz/674a1f75b63dcf349c81266fb77764eb to your computer and use it in GitHub Desktop.
function buttonListener(event) {
console.log(this + ' clicked!');
console.log('this === currentTarget:', this === event.currentTarget);
console.log('this === target:', this === event.currentTarget);
}
const button = document.querySelector('#btn');
button.addEventListener('click', buttonListener);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment