JS Timer espera antes da functão
//code before the pause
setTimeout(function(){
//do what you need here
}, 2000);
PutterBeanut
//code before the pause
setTimeout(function(){
//do what you need here
}, 2000);
wait(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
setTimeout(() => { console.log("World!"); }, 2000);