一、__proto__和prototype返回值是一个对象(除了Function.__proto__ 和 Function.prototype)
typeof Object.prototype; // 输出Object
typeof Object.__proto__; // 输出Object
1.构造函数才具有prototype方法,prototype返回值为该方法所在的对象2.__proto__:返回值为实例化该对象的对象,
var obj = new Object();
obj.__proto__ === Object.prototype; // 输出 true
二、Object、Array等均为构造方法
typeof Object;// 输出 function
typeof Array;// 输出 function
三、new Func():
即用该Func作为构造函数初始化对象
function init() {
this.x = 1;
this.y = 2;
this.show = function () {
console.log("I am a constructor");
}
}
var objInit = new init();
console.log(objInit.x);// 输出1
console.log(objInit.constructor); // 输出function init() { ... }