想问一下大家
```
function A(){
this.name="a";
this.toString=function(){
return this.name;
}
}
function B(){
this.name="b";
}
B.prototype=new A();
var b=new B();
console.log(b.name) //b
console.log(b.toString()) //b
console.log(b.constructor) //A()
console.log(b.proto==B.prototype) //true
```,这里的B的原型对象指向了A的一个实例, b.constructor指向的为什么是函数对象A啊,
因为b.proto==B.prototype为true
__proto__不是指向器构造函数的原型对象吗 那么b的构造函数应该是B啊