Answers for "cancel a set interval"

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
1

javascript stop setinterval

let autoScroll = window.setInterval(() => {
  if (window.scrollY >= document.getElementById('second-part').scrollHeight) {

    clearInterval(autoScroll);
  }

  window.scrollBy(0, 10);
}, 25);
Posted by: Guest on March-29-2021
-2

how to do a function after a set interval js

function sayHi() {
  alert('Hello');
}
//Do a function at a set interval continuously
setTimeout(sayHi, 1000);
//Do a function once after a set interval
setTimeout(sayHi, 1000);
Posted by: Guest on October-15-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language