JavaScript SetTimeout
setTimeout(function(){
alert("Sup!");
}, 2000);//wait 2 seconds
Grepper
setTimeout(function(){
alert("Sup!");
}, 2000);//wait 2 seconds
setTimeout(function(){ alert("Hello"); }, 3000);
var delayInMilliseconds = 1000; //1 second
setTimeout(function() {
//your code to be executed after 1 second
}, delayInMilliseconds);
setTimeout( () => {
alert("J'aime les chats");
}, 2000);//wait 2 seconds
setTimeout(function(){
}, 3000);
function timeout(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
async function sleep(fn, ...args) {
await timeout(3000);
return fn(...args);
}