filter数组去重

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了filter数组去重相关的知识,希望对你有一定的参考价值。

源代码:

1 function choose_no_repeat_number(collection) {
2     function noRepeat(element, index, self) {
3        return self.indexOf(element) === index;
4     }
5   var result=collection.filter(noRepeat);
6   console.log(result);
7   return result;
8   }
9 choose_no_repeat_number([1,2,1,4,9])

// 去除重复元素依靠的是indexOf总是返回第一个元素的位置,后续的重复元素位置与indexOf返回的位置不相等,因此被filter滤掉了。

在这里,element是元素的每个值;index是对应值得下标;self是数组;

参考:http://www.cnblogs.com/wensheng9527/p/6650017.html

以上是关于filter数组去重的主要内容,如果未能解决你的问题,请参考以下文章

数组filter()参数详解,巧用filter()数组去重

es6 filter() 数组过滤方法总结

数组对象通过filter+findIndex去重

用arr.filter数组去重

使用reduce的方法实现对象数组去重

使用js里面的迭代器filter实现数组去重