LoginSignup
0
0

More than 5 years have passed since last update.

【JavaScript 】アロー関数

Posted at

アロー関数

const add = (x, y) => {
  return x + y;
};
console.log(add(10, 5)); // 15

// 1行で
const sub = (x, y) => x - y;
console.log(sub(10, 5)); // 5

// 仮引数が1つのとき
const x2 = x => x * 2;
console.log(x2(10)); // 20

※Google Chrome で確認
※ES8

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