js数组去重,spread set

Posted 以后文章更新在https://ybleeho.github.

tags:

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

let test= [1,2,3,7,5,4,4,3]
console.log([...new Set(test)])   //[ 1, 2, 3, 7, 5, 4 ]

 

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

js数组去重利用set

JS中的Set 与去重

js之数组去重的方法

数组的set方法怎么写

js for循环内调用接口,set到数组,顺序不对的问题

JS 利用集合set实现 数组去重 交集 并集 差集