関数を式として返却できる構文。[[即時関数 (JavaScript)|即時関数]]の実行や、関数を変数へと代入したい場合に利用できる。 ```js const hello = function () { console.log("Hello!"); }; hello(); ```