js stopinterval code example
Example 1: settimeout javascript
setTimeout(function(){
console.log("hello");
}, 3000); //wait for atleast 3 seconds before console logging
Example 2: Javascript stop setInterval
var myInterval = setInterval(function(){console.log("mmk")}, 2000);
clearInterval(myInterval); //stop that interval
Example 3: stop a setinterval
let myVar = setInterval(() => {console.log('bop'), 1000);
clearInterval(myVar);
Example 4: javascript setinterval
setInterval(function(){
console.log("print this once every 3 second");
}, 3000);//run this thang every 3 seconds