function MyObject(){}
Array.prototype={};
MyObject.prototype={};
var a=new Array();
var b=new MyObject();
alert(a.constructor==Array);//true
alert(b.constructor==MyObject);//false
| |||||||
feedback
|
|
As such, your assignment:
...doesn't succeed, and so its
...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 | |||||
|
feedback
|
|
The
or (better IMO) you can not set
Also of note: | ||||
|
feedback
|
You can't assign a value to Array.prototype.
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.
You have assigned an empty object to MyObject.prototype, it does not have a prototype property, nor does b.
| |||
|
feedback
|