SOURCE

//箭头参数

let breakfast = (desert,food) => desert+food;
// 等价于
var breakfast = function breakfast(desert,food){
  return desert+food;
}
console 命令行工具 X clear

                    
>
console