var x = 20
function a(y) {
function get(y) {
console.log(this);
return x + y
}
var x = 10
console.log(this);
return get(y)
}
let b={}
b.a=a
console.log(a(10));
console.log(b.a(1));
能解释一下这个例子的this是指向谁吗,为什么b.a(1)的get()函数指向的是window啊?
谁调用的get函数了,没有谁,b只是调用了函数a,但是函数a里面的get函数不是b调用的