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)的主要内容,如果未能解决你的问题,请参考以下文章