0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

async/awaitでシンプルにsetTimeoutする

Last updated at Posted at 2020-02-26

async/awaitを使用するときに、setTimeoutPromiseを返す関数を作ります。

delayメソッド

const delay = ms => new Promise(resolve => setTimeout(resolve, ms));

※この後の使い方を続けて記述する場合、↑行末のセミコロンを省略すると使えません。

使い方

awaitdelayメソッドを使い、引数にはミリ秒単位で時間を入れる、その間後続の処理は行われません。

(async function() {
  await delay(3000)
  console.log('3秒経ちました。')
}())

出力結果

3秒経ちました。

3秒後に「3秒経ちました。」と出力されました。

参考文献

この記事は以下の情報を参考にして執筆しました。

0
3
2

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
0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?