js去重

前端之家收集整理的这篇文章主要介绍了js去重前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<table class="text"><tr class="li1">
<td class="ln"><pre class="de1">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@H_403_1@</td>
<td class="de1"><pre class="de1">> a = [1,1,2,3,5,2];
[ 1,2 ]

const _g = new Set();
undefined
a.map(i=>_g.add(i));
[ Set { 1,5 },  Set { 1,5 } ]
_g
Set { 1,5 }
Array.from(_g);
[ 1,5 ]

 @H_403_1@</td>
</tr></table>

猜你在找的程序笔记相关文章