javascript await 1 second code example
Example 1: javascript wait 1 second
setTimeout(function(){
console.log("Ready")
}, 1000);
Example 2: javascript version of sleep
//Javascipt is asyncronous so you can't pause/block code execution
//You can delay doing something with setTimeout
setTimeout(function(){
alert("Sup!");
}, 2000);//wait 2 seconds