関数式 (function expression)
関数式を用いて関数を定義するには、function式を用います。関数式は式なので、関数の終わりにはセミコロンを書きます。
javascript
// 関数式で関数を定義let hello = function () {return "hello";}; //←セミコロン
javascript
// 関数式で関数を定義let hello = function () {return "hello";}; //←セミコロン
関数式を用いて関数を定義するには、function式を用います。関数式は式なので、関数の終わりにはセミコロンを書きます。
javascript
// 関数式で関数を定義let hello = function () {return "hello";}; //←セミコロン
javascript
// 関数式で関数を定義let hello = function () {return "hello";}; //←セミコロン