素材巴巴 > 程序开发 >

(JS)数组去除重复

程序开发 2023-09-09 15:52:50
  1. 使用new Set()
var arr = [1,2,3,4,5,5,4,3,2,11,3,22,11,11,22];let c = new Set(arr); 
 

在这里插入图片描述new Set()方法可以将所有不重复的值添加到新的Set中,然后返回

  1. 使用fliter()方法
var arr = [1,2,3,4,5,5,4,3,2,11,3,22,11,11,22];
 let x = arr.filter(function(val,index),array) {return array.indexOf(val)=== index;
 }
 

filter()方法可以将满足条件的数值返回。使用indexOf查找array中当前值的索引是否等于index,如果等于说明数组中还不存在val,则返回一次,如果存在,则不返回。

  1. 使用循环判断
  var arr = [1,2,3,4,5,5,4,3,2,11,3,22,11,11,22];let newArr = [];for(let i = 0; i

新建一个空数组,然后使用indexOf判断,如果等于-1,则表示空数组中没有当前项,则push进入新数组。此方法只能判断简单类型数值,如果需要判断undefined和NaN,Null则需要添加额外的判断条件。

  1. 使用reduce()方法去除重复
var arr = [1, 2, 3, 4, 5, 5, 4, 3, 2, 11, 3, 22, 11, 11, 22];let x = arr.reduce(function(accumulation, current) {if (!accumulation.includes(current)) {accumulation.push(current);}return accumulation;}, []);
 

reduce()方法是ES6中新加入的数组方法,可以用于累加计算,也可以用于判断某些项


遇到Bug需要帮助,
欢迎加wx:
xmzl1988
备注"csdn博客“
温馨提示此为有偿服务;


标签:

素材巴巴 Copyright © 2013-2021 http://www.sucaibaba.com/. Some Rights Reserved. 备案号:备案中。