Answers for "Use the clearInterval() method to the clear the repeating command with the timeID variable clockID."

27

Javascript stop setInterval

var myInterval = setInterval(function(){console.log("mmk")}, 2000);

clearInterval(myInterval); //stop that interval
Posted by: Guest on July-23-2019

Code answers related to "Use the clearInterval() method to the clear the repeating command with the timeID variable clockID."

Code answers related to "Javascript"

Browse Popular Code Answers by Language