//箭头参数 let breakfast = (desert,food) => desert+food; // 等价于 var breakfast = function breakfast(desert,food){ return desert+food; }