为什么不输出

2019-04-13 17:43发布

问题:

function a (name,age){
this.name=name;
this.age=age;
this.say=function(){
console.log(age);
};
}

function b(){

this.eat=function(){
a.call(b);
}
}
var bb=new b();
bb.eat();

回答1:

肯定不打印啦,this.say压根没执行过



标签: js