js wait 1 second then code example

Example 1: javascript wait 1 second

setTimeout(function(){ 
    console.log("Ready")
}, 1000);

Example 2: javascript wait 1 second

setTimeout(() => {console.log('1 second finished!')}, 1000);

Example 3: javascript wait 10 seconds

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

// or

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

Example 4: javascript wait 5 seconds

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