箭头函数的特性

1、 函数体内的this值,绑定的定义时所在的作用域的this


2、不可以当作构造函数
3、不可以使用arguments对象

function fn(a, ...arr){    //rest参数,把实参放在数组中
  console.log(a)      // 1
  console.log(arr)    // [1, 2, 3]
}
fn(1,2,3)

你可能感兴趣的:(箭头函数的特性)