标签:构造函数 log turn console 改变 function bin margin 调用
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,没有原型,不能作为构造函数。
标签:构造函数 log turn console 改变 function bin margin 调用
原文地址:https://www.cnblogs.com/tangyunluck/p/9936528.html