js中关于this的指向问题的经典题目

2020-05-24  本文已影响0人  spencer_sun
window.name = 'window';
function A() {
  console.log(age); // undefined
  var age = 12;
  this.name = 'spencer';
  console.log(this.name); // spencer
  console.log(this.age); //undefined
}

A.prototype.getName = function() {
  console.log(this.name + 1); // window+1
};
var a = new A();
var b = a.getName;
b();

具体关于this指向的问题, 可以参阅:你不知道的js上册

上一篇下一篇

猜你喜欢

热点阅读