function MyObject(){}
Array.prototype={};
MyObject.prototype={};
var a=new Array();
var b=new MyObject();
alert(a.constructor==Array);//true
alert(b.constructor==MyObject);//false
link|improve this question

56% accept rate
There is a nice article about it here: joost.zeekat.nl/constructors-considered-mildly-confusing.html – Nicosunshine Jul 19 '11 at 3:57
thank you,i am reading it right now. – simon xu Jul 19 '11 at 4:07
Indeed, this stuff is very confusing! See my article on the subject; perhaps it will unconfuse you. blogs.msdn.com/b/ericlippert/archive/2003/11/06/53352.aspx – Eric Lippert Jul 19 '11 at 5:45
feedback

3 Answers

up vote 8 down vote accepted

Array.prototype is a non-writable property.

As such, your assignment:

Array.prototype = {}

...doesn't succeed, and so its .constructor property hasn't changed.

15.4.3.1 Array.prototype

The initial value of Array.prototype is the Array prototype object (15.4.4).

This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: false }

...whereas with your custom constructor, you have the ability to assign a different prototype object, so you've overwritten the original which had reference to the constructor via .constructor.

link|improve this answer
nice answer.the link is very useful,thanks you. – simon xu Jul 19 '11 at 4:00
@simon xu: You're welcome. – user113716 Jul 19 '11 at 4:03
feedback

The constructor property is overwritten when you override the prototype property with your own empty object instance, since ({}).constructor === Object. You can do either

function MyObject() {}
MyObject.prototype = {};
MyObject.prototype.constructor = MyObject;

or (better IMO) you can not set prototype directly, but instead augment it:

function MyObject() {}
MyObject.prototype.foo = "bar";

Also of note: Array.prototype is not writable, so your line Array.prototype = {} will silently fail (or noisily fail in strict mode).

link|improve this answer
feedback
> function MyObject(){} 
> Array.prototype={};

You can't assign a value to Array.prototype.

> MyObject.prototype={};
> var a=new Array();
> var b=new MyObject();
> alert(a.constructor==Array);//true

Array.prototype has a constructor property that references the Array function. Since a is an instance of Array, it iherits Array.prototype's constructor property.

> alert(b.constructor==MyObject);//false

You have assigned an empty object to MyObject.prototype, it does not have a prototype property, nor does b.

MyObject.prototype.constructor = MyObject;

alert(b.constructor==MyObject); // true
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.