Example 1: Javascript stop setInterval
var myInterval = setInterval(function(){console.log("mmk")}, 2000); clearInterval(myInterval);
Example 2: how to reset interval javascript
function myFn() {console.log('idle');} var myTimer = setInterval(myFn, 4000); 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
Post a Comment