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

处理数组的forEach map filter的兼容性

时间:2016-11-07 12:25:21      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:foreach   cal   数组   prot   prototype   span   filter   处理   length   

处理数组的forEach

1     //forEach处理
2     if(!Array.prototype.forEach) {
3         Array.prototype.forEach = function (callback) {
4             for(var i=0,len=this.length;i<len;i++) {
5                 callback(this[i], i);
6             }
7         }
8     }

 

处理数组的map

 1     //处理map
 2     if(!Array.prototype.map) {
 3         Array.prototype.map = function (callback) {
 4             var arr = [];
 5             for(var i=0,len=this.length;i<len;i++) {
 6                 arr.push(callback(this[i], i));
 7             }
 8             return arr;
 9         }
10     }

 

//处理数组的filter

 1     //处理filter
 2     if(!Array.prototype.filter) {
 3         Array.prototype.filter = function (callback) {
 4             var arr = [];
 5             for(var i=0,len=this.length;i<len;i++) {
 6                 if(callback(this[i], i)) {
 7                     arr.push(this[i])
 8                 }
 9             }
10             return arr;
11         }
12     }

 

处理数组的forEach map filter的兼容性

标签:foreach   cal   数组   prot   prototype   span   filter   处理   length   

原文地址:http://www.cnblogs.com/Lycheeling/p/6038125.html

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