javascript高级知识点——内置对象原型

代码信息来自于http://ejohn.org/apps/learn/。

可以修改内置对象的方法。

if (!Array.prototype.forEach) { 
  Array.prototype.forEach = function(fn){ 
    for ( var i = 0; i < this.length; i++ ) { 
      fn( this[i], i, this ); 
    } 
  }; 
} 
 
["a", "b", "c"].forEach(function(value, index, array){ 
  console.log( value, "Is in position " + index + " out of " + (array.length - 1) ); 
});

内置对象也继承自其原型,可以修改原型的方法,不过强烈不推荐这么做,因为很可能造成未知的错误。

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。