Answers for "clearinterval setinterval"

27

Javascript stop setInterval

var myInterval = setInterval(function(){console.log("mmk")}, 2000);

clearInterval(myInterval); //stop that interval
Posted by: Guest on July-23-2019
6

stop a setinterval

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

clearInterval(myVar);
Posted by: Guest on May-31-2020
5

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);
Posted by: Guest on February-10-2021

Code answers related to "clearinterval setinterval"

Code answers related to "Javascript"

Browse Popular Code Answers by Language