码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2019-07-02 22:51:35      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:return   快速   div   数组   function   color   set   let   nbsp   

使用new Set()快速数组去重:

  let arr = [1, 2, 2, 3, 4, 5, 5, 5, 6]
    let set = new Set([...arr])
    console.log([...set]) //[1, 2, 3, 4, 5, 6]


    function SetArr(array) {
        return Array.from(new Set(array));
    }
    console.log(SetArr([1, 1, 2, 2, 3, 4, 4]))  // [1, 2, 3,4]

 

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

标签:return   快速   div   数组   function   color   set   let   nbsp   

原文地址:https://www.cnblogs.com/lwming/p/11123461.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!