Skip to content

Instantly share code, notes, and snippets.

@rrameshbtech
Last active July 30, 2018 03:47
Show Gist options
  • Save rrameshbtech/e1aad25e5ac3cc1acba09389e7036d7a to your computer and use it in GitHub Desktop.
Save rrameshbtech/e1aad25e5ac3cc1acba09389e7036d7a to your computer and use it in GitHub Desktop.
<html>
<button id="thisButton" onclick="verifyThis(this)">Check this</button>
<script>
const thisButton = document.getElementById('thisButton');
function verifyThis(buttonWhichTriggered) {
console.log(buttonWhichTriggered === thisButton); // true
console.log(this === window); // true
}
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment