Last active
March 2, 2017 09:20
-
-
Save marcusandre/46c9c5004d0d52d49e080f162133add9 to your computer and use it in GitHub Desktop.
Clear your timers!
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
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