Answers for "js add delay"

18

javascript 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
1

Delay in javascript

setTimeout(function () {

//to do..

}, 1000);
Posted by: Guest on August-05-2021
1

javascript adding delay

//You have to wait for TypeScript 2.0 with async/await for ES5 support as it now supported only for TS to ES6 compilation.
//You would be able to create delay function with async:

function delay(ms: number) {
    return new Promise( resolve => setTimeout(resolve, ms) );
}

//And call it
await delay(300);
Posted by: Guest on March-31-2021
2

how create a delay for html js

console.log("Hello");
setTimeout(() => {  console.log("World!"); }, 2000);
Posted by: Guest on August-18-2020
6

js add delay

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language