es6数组去重(Set)

Posted 骑蝴蝶飞

tags:

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

1.数组去重

const newArr= new Set(array);

 

2.set类型转换为数组

 Array.from(newArr)

 

连写

const newArr= Array.from(new Set(array));

 

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

ES6通过Set数组去重

ES6 利用 Set 数组去重法

VUE ES6 new Set实现数组去重

数组去重--ES6方法

使用es6新增Set函数快速数组去重

es6数组去重