Answers for "js do you have to clear timeout?"

16

js cleartimeout

var myVar;

function myFunction() {
  myVar = setTimeout(function(){ alert("Hello"); }, 3000);
}

function myStopFunction() {
  clearTimeout(myVar);
}
Posted by: Guest on February-19-2020

Code answers related to "js do you have to clear timeout?"

Code answers related to "Javascript"

Browse Popular Code Answers by Language