wait some seconds javascript code example

Example 1: js timer wait before functoin

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

Example 2: javascript wait 10 seconds

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

// or

.then(() => {
  // ...
  ({ timeout: 10000 });
      });

Example 3: javascript wait 5 seconds

timeout(ms) { //pass a time in milliseconds to this function
    return new Promise(resolve => setTimeout(resolve, ms));
  }

Example 4: 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();
}