Answers for "wait 20 seconds before call function javascript"

3

javascript wait 1 second

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language