LoginSignup
16
14

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);
16
14
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
16
14