Answers for "setTimeout vanilla js"

26

timeout javascript

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

javascript set timeout

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

js after settimeout

function doHomeWork(subject, callback){
    setTimeout(callback,500);
    console.log("doing my homework:", subject)
}

doHomeWork("Maths", function(){console.log("finished my homework");});
Posted by: Guest on January-10-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language