Answers for "node js run command and wait"

0

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
}
Posted by: Guest on October-22-2021
0

nodejs wait function

const wait=ms=>new Promise(resolve => setTimeout(resolve, ms));
Posted by: Guest on October-19-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language