1.定义
ES6新增,用一个箭头取代function。不会绑定this
a.正常形式
let test = (a,b)=>{ console.log(a+b)//8 }; test(3,5)
b.只有一个形参,可省略括号
let test = a =>{ console.log(a)//3 }; test(3);
c.只有一个形参,函数体整体只有一个return语句
let test = a => a+100; console.log(test(5));//105
1.定义
ES6新增,用一个箭头取代function。不会绑定this
a.正常形式
let test = (a,b)=>{ console.log(a+b)//8 }; test(3,5)
b.只有一个形参,可省略括号
let test = a =>{ console.log(a)//3 }; test(3);
c.只有一个形参,函数体整体只有一个return语句
let test = a => a+100; console.log(test(5));//105