Appearance
Delays the value by given wait time
wait
Signature:
declare function delay(wait: number): Promise<void>;
await delay(1000); console.log('hello'); // after 1000 milliseconds log hello
Open Source Code