Skip to content

Instantly share code, notes, and snippets.

@marcusandre
Last active March 2, 2017 09:20
Show Gist options
  • Save marcusandre/46c9c5004d0d52d49e080f162133add9 to your computer and use it in GitHub Desktop.
Save marcusandre/46c9c5004d0d52d49e080f162133add9 to your computer and use it in GitHub Desktop.
Clear your timers!
let tid
timer()
function timer() {
tid = window.setTimeout(loki, 2000)
}
function loki() {
alert('loki is a ferret')
clearloki()
}
function clearloki() {
if (tid) window.clearTimeout(tid)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment