Skip to content
jood-helpdesk
Main Navigation
Home
Github
Appearance
Menu
Return to top
On this page
Table of Contents for current page
delay
지정된 시간 만큼 await 합니다.
ts
async
function
some
() {
await
delay
(
1000
);
console.
log
(
'foo'
);
}