美文网首页
利用 Set 进行数组去重

利用 Set 进行数组去重

作者: kviccn | 来源:发表于2017-03-23 02:39 被阅读44次

    ES6 提供了新的数据结构 Set。它类似于数组,但是成员的值都是唯一的,没有重复的值。利用这一特性可以进行数组去重。

    const items = [1, 2, 2, 3, 3, 3, 4, 5, 6, 6, 7, 7, 7, 8, 8, 9, 0, 0]
    const items2 = [...new Set(items)]
    
    console.log(items)
    console.log(items2)
    

    输出如下:

    [ 1, 2, 2, 3, 3, 3, 4, 5, 6, 6, 7, 7, 7, 8, 8, 9, 0, 0 ]
    [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 ]
    

    相关文章

      网友评论

          本文标题:利用 Set 进行数组去重

          本文链接:https://www.haomeiwen.com/subject/xrzanttx.html