Answers for "how to stop the timer inside 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
1

stop interval js

clearInterval(interval)
Posted by: Guest on March-12-2021

Code answers related to "how to stop the timer inside setinterval"

Code answers related to "Javascript"

Browse Popular Code Answers by Language