Answers for "Which function is used to stop the execution of code being called repeatedly with the setInterval() function?"

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

Code answers related to "Which function is used to stop the execution of code being called repeatedly with the setInterval() function?"

Code answers related to "Javascript"

Browse Popular Code Answers by Language