Answers for "how to wait one second in javascript"

3

javascript wait 1 second

setTimeout(function(){ 
    console.log("Ready")
}, 1000);
Posted by: Guest on November-11-2020
3

javascript wait 1 second

setTimeout(() => {console.log('1 second finished!')}, 1000);
Posted by: Guest on October-05-2020
4

javascript settimeout

// Redirect to index page after 5 sec
setTimeout(function(){ window.location="index"; },5000);
Posted by: Guest on July-17-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 "how to wait one second in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language