Answers for "js pause code execution"

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
0

pause javascript

function wait(ms)
{
    var d = new Date();
    var d2 = null;
    do { d2 = new Date(); }
    while(d2-d < ms);
}
Posted by: Guest on January-12-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language