前端之家收集整理的这篇文章主要介绍了
迷惑javascript的构造函数和原型?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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引用构造函数的原始对象.
原文链接:https://www.f2er.com/js/150757.html