Skip to content

Instantly share code, notes, and snippets.

@joladev
Last active December 19, 2015 21:19
Show Gist options
  • Save joladev/6019697 to your computer and use it in GitHub Desktop.
Save joladev/6019697 to your computer and use it in GitHub Desktop.
var intervalId = setInterval(function () {
if (condition) {
return;
} else {
clearInterval(intervalId);
}
alert("I finished");
,1000});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment