Skip to content

Instantly share code, notes, and snippets.

@smoothness
Created January 6, 2014 21:10
Show Gist options
  • Save smoothness/8289893 to your computer and use it in GitHub Desktop.
Save smoothness/8289893 to your computer and use it in GitHub Desktop.
var cycle = setInterval(function() {
if(condition) {
clearInterval(cycle);
}else{
// do something
}
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment