17
15

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 5 years have passed since last update.

setIntervalをaruguments.calleeを使わずに0秒でも発火させる

Last updated at Posted at 2013-08-03

元ネタ:setIntervalをaruguments.calleeを使って0秒でも発火させる - 終わる世界とコンテンツ

arguments.calleeはstrictモードでエラーになるので使うべきじゃありません。
即時関数にも名前を付けられるので、それを利用できます。

setInterval((function waf() {
    console.log('わふー');
    return waf;
}()), 2000);
17
15
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
17
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?