Answers for "settimeout and cleartimeout javascript"

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 "settimeout and cleartimeout javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language