javascript add delay to event code example
Example 1: js add delay with promises
await new Promise(resolve => setTimeout(resolve, 1000));
Example 2: 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);
Example 3: how to delay something in javascript
setTimeout(/*how many milaseconds you want to delay */)