Answers for "finish setInteral in given duration"

6

stop a setinterval

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

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

setinterval stop onditional stop

var timesRun = 0;
var interval = setInterval(function(){
    timesRun += 1;
    if(timesRun === 60){
        clearInterval(interval);
    }
    //do whatever here..
}, 2000);
Posted by: Guest on June-13-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language