Answers for "how to to wait in js"

5

wait for time javascript

//code before the pause
setTimeout(function(){
    //do what you need here
}, 2000);
Posted by: Guest on November-28-2019
-1

javascript wait 10 seconds

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

// or

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language