Last Updated: February 25, 2016
·
320
· eakron

JS Run Until

var intervalId = setInterval(function () {
  if (condition) {
    return;
  } else {
    clearInterval(intervalId);
  }
  alert("I finished");
},1000);

2 Responses
Add your response

The last line is wrong ;)

over 1 year ago ·

Not anymore! Thanks!

over 1 year ago ·