xxxxxxxxxx
setTimeout(function(){
console.log("Ready")
}, 1000);
xxxxxxxxxx
function waitOneSecond() {
return new Promise(resolve => {
setTimeout(resolve, 1000);
});
}
async function myFunction() {
// Code execution before the delay
await waitOneSecond();
// Code execution after the delay
}
myFunction();
xxxxxxxxxx
function sleep(num) {
let now = new Date();
const stop = now.getTime() + num;
while(true) {
now = new Date();
if(now.getTime() > stop) return;
}
}
sleep(1000)
console.log('delay 1 second');