Answers for "how to wait delay 2 seconds in javascript"

-1

javascript wait 10 seconds

setTimeout(function () {
        // ...
    }, 10000);

// or

.then(() => {
  // ...
  ({ timeout: 10000 });
      });
Posted by: Guest on July-12-2020
1

javascript delay some seconds

let ms = 50; // This is the amount of ms you want your code to wait!
let start = new Date().getTime();
let end = start;
while(end < start + ms) {
  end = new Date().getTime();
}
Posted by: Guest on May-08-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language