0
0

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 1 year has passed since last update.

Javascriptにおけるアロー関数とは何か?

Last updated at Posted at 2023-03-04

(A). これは普通の関数

function hoge1(param) {
  return param;
}
console.log(hoge1('hello.'));

(B). (A)をアロー関数で実装するとこうなる

const hoge2 = (param) => {
  return param;
}
console.log(hoge2('hello.'));

(C). (B)のように引数が1つの場合は、さらに簡略化することができる

const hoge3 = param => {
  return param;
}
console.log(hoge3('hello.'));

(D). 引数がない場合はこう

const hoge4 = () => {
  return 'hello.';
}
console.log(hoge4());

追記

  • アロー関数は、単なるシンタックスシュガーではない。
    • 関数宣言とでは、thisの参照が違うので注意。
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?