[JS] 先bind后new,this的指向

[JS] 先bind后new,this的指向

非严格模式下,以下调用方式中, this 绑定为全局对象 window , 而在严格模式下, this 绑定为 undefined 。 值得注意是的,只有 this 处于严格模式中,才会绑定为 undefined , 与 f 被
JavaScript180