es6 箭头函数
Posted tangyunluck
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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,没有原型,不能作为构造函数。
以上是关于es6 箭头函数的主要内容,如果未能解决你的问题,请参考以下文章