📜  将传统函数与箭头函数进行比较 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:14.898000             🧑  作者: Mango

代码示例1
// Traditional Function
function (a){
  return a + 100;
}

// Arrow Function Break Down

// 1. Remove the word "function" and place arrow between the argument and opening body bracket
(a) => {
  return a + 100;
}

// 2. Remove the body braces and word "return" -- the return is implied.
(a) => a + 100;

// 3. Remove the argument parentheses
a => a + 100;