Skip to content

Instantly share code, notes, and snippets.

@powerc9000
Created May 16, 2013 15:11
Show Gist options
  • Save powerc9000/5592452 to your computer and use it in GitHub Desktop.
Save powerc9000/5592452 to your computer and use it in GitHub Desktop.
stopping and interval
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