码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2014-11-04 19:07:40      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   os   java   for   

代码信息来自于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) ); 
});

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

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

标签:style   blog   http   io   color   ar   os   java   for   

原文地址:http://www.cnblogs.com/winderby/p/4074177.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!