Answers for "javascript delay 2 seconds"

3

javascript wait 1 second

setTimeout(function(){ 
    console.log("Ready")
}, 1000);
Posted by: Guest on November-11-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
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