es6 箭头函数
1.箭头函数没有 this,所以需要通过查找作用域链来确定 this 的值。箭头函数没有this,不能使用call(), apply(), bind()改变this;
2.没有arguments,访问外围函数的arguments
function constant () {
return () => arguments[0]
}
let result = constant(1)
console.log(result)
3.不能通过new关键字调用,没有new.target,没有原型,不能作为构造函数。