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

ES5的数组方法

时间:2017-11-29 16:12:32      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:ocs   ever   for   targe   global   function   https   script   reac   

参考:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array

Array.prototype.forEach()

[1, 2, 3, 4, 5].forEach(function(item, index, array) {  
    console.log(‘the current index is: ‘ + index + ‘, value is: ‘ + item);  
});  

Array.prototype.filter()

过滤所有偶数,返回true,则该元素会被保留下来

var oddArr = [1, 2, 3, 4, 5].filter(function(item) {  
    return item % 2 !== 0;  
});

 配合indexOf实现数组去重:

var arr = [1,1,2,3,5,5,2,9,0,0].filter((item,index,arr)=>{
    return arr.indexOf(item) === index;
});

ES6 使用Set实现数组去重:

var arr = [...new Set([1,1,2,3,5,5,2,9,0,0])];

Array.prototype.map()

var doubleArr = [1, 2, 3, 4, 5].map(function(item) {  
    return item * 2;  
});

Array.prototype.some()

只要存在大于3的元素,则some返回true

var someoneGreaterThan3 = [1, 2, 3, 4, 5].some(function(item) {  
    return item > 3;  
}); 

与some对应的还有一个every方法,这个方法要求所有元素都满足条件,也就是闭包中都返回true时,every才会返回true

 

ES5的数组方法

标签:ocs   ever   for   targe   global   function   https   script   reac   

原文地址:http://www.cnblogs.com/hellohello/p/7920566.html

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