Answers for "how to clear settimeout in angular 4"

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 "Javascript"

Browse Popular Code Answers by Language