Last active
May 30, 2023 18:31
-
-
Save jessycormier/c9985a6ecbe750c42c260149581d931f to your computer and use it in GitHub Desktop.
timer/timeout reset
This file contains 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
var timer = setInterval( function() { /* do your thing */ }, 125);; | |
function stopTimer() { clearTimeout(timer); } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment