js数组去重 5

本文分析了JavaScript中indexOf、includes方法、Set数据结构和filter函数在处理数组去重问题时的使用,特别关注了对象属性作为字符串导致的去重误区。通过实例演示和类型检查,揭示了如何正确处理不同方法在去重过程中的差异。
摘要由CSDN通过智能技术生成

indexOf

    let arr = [-1, '-1', -1]
    let res = []
    
    arr.forEach(item => {
      if (res.indexOf(item) === -1) {
        res.push(item)
      }
    })
    
    console.log(res.toString()) // -1,-1
    console.log(typeof res[0]) // number
    console.log(typeof res[1]) // string

includes

    let arr = [-1, '-1', -1]
    let res = []

    arr.forEach(item => {
      if (!res.includes(item)) {
        res.push(item)
      }
    })

    console.log(res.toString()) // -1,-1
    console.log(typeof res[0]) // number
    console.log(typeof res[1]) // string

Set

    let arr = [-1, '-1', -1]
    let res = []
    
    res = Array.from(new Set(arr))
    
    console.log(res.toString()) // -1,-1
    console.log(typeof res[0]) // number
    console.log(typeof res[1]) // string

filter

    let arr = [-1, '-1', -1]
    let res = []

    res = arr.filter((item, index) => {
      return arr.indexOf(item) === index
    })

    console.log(res.toString()) // -1,-1
    console.log(typeof res[0]) // number
    console.log(typeof res[1]) // string

对象属性实现 - 有问题

对象的属性是字符串。这样就会把数字和字符串当成相同的去重掉

    let arr = [-1, '-1', -1]
    let res = []

    let obj = {}
    arr.forEach(item => {
      if (obj[item] === undefined) {
        obj[item] = 1
        res.push(item)
      }
    })

    console.log(res.toString()) // -1
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值