Answers for "javascript wait 5 seconds then do something"

1

javascript run every 5 seconds

const interval = setInterval(function() {
   // method to be executed;
 }, 5000);

clearInterval(interval); // thanks @Luca D'Amico
Posted by: Guest on September-27-2020
-1

javascript wait 10 seconds

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

// or

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

javascript wait 5 seconds

timeout(ms) { //pass a time in milliseconds to this function
    return new Promise(resolve => setTimeout(resolve, ms));
  }
Posted by: Guest on March-18-2020

Code answers related to "javascript wait 5 seconds then do something"

Code answers related to "Javascript"

Browse Popular Code Answers by Language