LoginSignup
0
0

More than 3 years have passed since last update.

[JavaScript] IIFE (即時実行関数式)

Posted at

[JavaScript] IIFE (即時実行関数式)

IIFE (Immediately Invoked Function Expression; 即時実行関数式) は定義されるとすぐに実行される JavaScript の 関数 です。

構文:

(function () {
    
})();

例:

(function() {
    console.log('called');
})();

コンソールに called と表示されます。

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