JavaScript espera 1 segundo
setTimeout(function(){
console.log("Ready")
}, 1000);
Foreverekk
setTimeout(function(){
console.log("Ready")
}, 1000);
function sleep(milliseconds) {
const date = Date.now();
let currentDate = null;
do {
currentDate = Date.now();
} while (currentDate - date < milliseconds);
}
console.log("Hello");
sleep(2000);
console.log("World!");
//code before the pause
setTimeout(function(){
//do what you need here
}, 2000);
function sleep(milliseconds) {
const start = Date.now();
while (Date.now() - start < milliseconds);
}
console.log("Hello");
sleep(2000);
console.log("World!");
function wait(sec) {
const date = Date.now();
let currentDate = null;
do {
currentDate = Date.now();
} while (currentDate - date < sec*1000);
}
console.log('waiting')
wait(1)
console.log('i am done')
function wait(milliseconds) {
const date = Date.now();
let currentDate = null;
do {
currentDate = Date.now();
} while (currentDate - date < milliseconds);
}
function your_code() {
//code stuff
wait(1000); //waits 1 second before continuing
//other code stuff
}