Skip to content

Instantly share code, notes, and snippets.

@codetombomb
Created November 22, 2021 14:45
Show Gist options
  • Save codetombomb/bac7543ac90b7ac4c7502db8b13739e2 to your computer and use it in GitHub Desktop.
Save codetombomb/bac7543ac90b7ac4c7502db8b13739e2 to your computer and use it in GitHub Desktop.
! operator
const button = document.querySelector("button")!;
if(button){
button.addEventListener('click', ()=>{
console.log('clicked')
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment