Skip to content

sleep(ms)

参数类型必填说明
msnumber毫秒数

示例

javascript
(async () => {
  // 其他代码
  await sleep(10_000); // 等待10s
  // 其他代码
})();