为什么下面代码的输出结果的情况会不一样:
var Box = {};
box.prototype.name = "xee";
box.prototype.study = {
return this.name;
}
var box = new Box();
alert(box.prototype); //结果是Undefiled
alert(box.constructor); //这个却是 Object,constructor不也是要通过_proto_指针访问的吗?为什么他却不是Undefiled
相关分类