wait for time javascript

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

// or

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

Also in JavaScript: