Answers for "how to wait some seconds before run the function in javascript"

1

run a code after delay js

setTimeout(function(){}, milliseconds);
Posted by: Guest on January-21-2021
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 "how to wait some seconds before run the function in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language