“JS Wait Command” Respostas de código

Espere pelo tempo JavaScript

//code before the pause
setTimeout(function(){
    //do what you need here
}, 2000);
PutterBeanut

JS Wait Command

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
}
Ultratiger

Respostas semelhantes a “JS Wait Command”

Perguntas semelhantes a “JS Wait Command”

Mais respostas relacionadas para “JS Wait Command” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código