function MyObject(){} Array.prototype={}; MyObject.prototype={}; var a=new Array(); var b=new MyObject(); alert(a.constructor==Array);//true alert(b.constructor==MyObject);//false
解决方法
Array.prototype是一个不可写的属性.
因此,您的任务:
Array.prototype = {}
…没有成功,因此它的.constructor属性没有改变.
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 }
…而使用自定义构造函数,您可以分配不同的原型对象,因此您已经覆盖了通过.constructor引用构造函数的原始对象.