不是,和 this 的指向规则一致。比如这样: new function(){ this.name='inner'; (()=>{console.log(this===window, this.name)})() } // 输出 false "inner" 指向函数实例的 this
不是,和 this 的指向规则一致。
比如这样:
指向函数实例的 this