function Js() {};
var js = new Js();
js.constructor.prototype; //Js {}
Js.prototype = {};
js.constructor.prototype; Object {}
function Js() {};
var js = new Js();
js.constructor;//function Js() {}
Js.prototype = {};
js.constructor;//function Js() {}
constructor.prototype
和constructor
之间的差异?
已在约constructor.prototype
的行为规范?
答案 0 :(得分:0)
constructor
对象仅引用构成对象的函数,而prototype
包含将从对象继承的所有属性和方法,包括constructor
属性本身。