Created
May 16, 2013 15:11
-
-
Save powerc9000/5592452 to your computer and use it in GitHub Desktop.
stopping and interval
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 interval = setInterval(function(){ | |
console.log("hello world") | |
}, 1000); | |
clearInterval(interval); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment