Answers for "why set timeout 0"

20

stop settimeout

var myVar;

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

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

javascript set timeout

setTimeout(function(){
 	console.log("hello");
}, 3000); //wait for atleast  3 seconds before console logging
Posted by: Guest on July-10-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language