美文网首页
JS - 数组去重

JS - 数组去重

作者: 恒星的背影 | 来源:发表于2018-09-28 21:07 被阅读0次
    [...new Set(array)]
    
    arr.forEach((item, index) => {
      if(arr.indexOf(item) === index)
        res.push(item)
    })
    
    arr.forEach((item, index) => {
      if(res.indexOf(item) === -1)
        res.push(item)
    })
    
    

    相关文章

      网友评论

          本文标题:JS - 数组去重

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