日本語
Appearance
与えられた wait 時間だけ値を遅延させます。
wait
Signature:
declare function delay(wait: number): Promise<void>;
await delay(1000); console.log("hello"); // after 1000 milliseconds log hello
Open Source Code