Answers for "how to stop code execution in javascript for 2 sec"

6

js add delay

await new Promise(resolve => setTimeout(resolve, 1000));
Posted by: Guest on March-16-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 "how to stop code execution in javascript for 2 sec"

Code answers related to "Javascript"

Browse Popular Code Answers by Language