Clear Interval Js Code Example


Example 1: Javascript stop setInterval

var myInterval = setInterval(function(){console.log("mmk")}, 2000);  clearInterval(myInterval); //stop that interval

Example 2: how to reset interval javascript

function myFn() {console.log('idle');}  var myTimer = setInterval(myFn, 4000);  // Then, later at some future time,  // to restart a new 4 second interval starting at this exact moment in time clearInterval(myTimer); myTimer = setInterval(myFn, 4000);

Example 3: stop a setinterval

let myVar = setInterval(() => {console.log('bop'), 1000);  clearInterval(myVar);

Example 4: javascript clear interval

const delay = 2; const limit = 2; let i = 1;  console.log('START!'); const limitedInterval = setInterval(() => {   console.log(`message ${i}, appeared after ${delay * i++} seconds`);      if (i > limit) {     clearInterval(limitedInterval);     console.log('interval cleared!');   } }, delay * 1000);

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?