“JS tunggu perintah” Kode Jawaban

tunggu javascript waktu

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

JS tunggu perintah

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

Jawaban yang mirip dengan “JS tunggu perintah”

Pertanyaan yang mirip dengan “JS tunggu perintah”

Lebih banyak jawaban terkait untuk “JS tunggu perintah” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya