美文网首页前端新手
数组和对象数组去重

数组和对象数组去重

作者: 刘员外__ | 来源:发表于2020-08-05 16:34 被阅读0次

    对象数组去重:

    因为map key唯一,所以你想要根据哪个属性去重,res.has(a)和set(a, 1) 里a就可以改成什么,比如a.name

    function unique(arr) {
        const res = new Map();
        return arr.filter((a) => !res.has(a) && res.set(a, 1))
    }
    

    数组去重

    let arr = [1, 1, 4, 50, 50, 6, 2, 2]
    let res = Array.from(new Set(arr))
    console.log(res)
    

    相关文章

      网友评论

        本文标题:数组和对象数组去重

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