Answers for "add delay to function javascript"

18

javascript HOW set delay

var delayInMilliseconds = 1000; //1 second

setTimeout(function() {
  //your code to be executed after 1 second
}, delayInMilliseconds);
Posted by: Guest on January-31-2020
4

delay in javascript

setTimeout(function() {
 //your code here
}, 1000);
Posted by: Guest on November-03-2020
6

js add delay

await new Promise(resolve => setTimeout(resolve, 1000));
Posted by: Guest on March-16-2020

Code answers related to "add delay to function javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language