Answers for "can i do .then on timeout"

26

timeout javascript

setTimeout(function(){
 	//code goes here
}, 2000); //Time before execution
Posted by: Guest on April-13-2020
3

javascript timeout

// wait 1000ms and then run func()
let myTimeout = setTimeout(func, 1000);
// cancel the timeout
clearTimeout(myTimeout);
Posted by: Guest on June-02-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language