242

问答题 242 /501

箭头函数中this指向举例

参考答案

参考回答:

var a=11;
function test2(){
this.a=22;
let b=()=>{console.log(this.a)}
b();
}
var x=new test2();

//输出22

定义时绑定。