LoginSignup
6
3

More than 1 year has passed since last update.

JavaScriptでsleep

Last updated at Posted at 2021-08-04

sleep関数

const sleep = (ms) => new Promise(r => setTimeout(r, ms));

sleep関数の使い方

sample.js
async function hoge() {
    console.log("5秒スリープ");
    await sleep(5000);
    console.log("1秒スリープ");
    await sleep(1000);
    console.log("END");
}
const sleep = (ms) => new Promise(r => setTimeout(r, ms));
hoge();

※asyncが付いた関数の中でawaitと一緒に使う。

参考

6
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
3