关于原型prototype

为什么下面代码的输出结果的情况会不一样:

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


狐的传说
浏览 558回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript