Created
September 26, 2019 07:21
-
-
Save AkashRajvanshi/a132641fd07a3b85cb38af879fdaba46 to your computer and use it in GitHub Desktop.
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
| 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