美文网首页html5和js
如何进行数组去重

如何进行数组去重

作者: 我的天空是晴天 | 来源:发表于2020-03-22 19:35 被阅读0次

    var arr1 = [1,1,2,2,true,'true','hello','hello',3,4,5]

    const unique = function(arr){
        return  arr.filter(function(item ,index,arr){

        return arr.indexOf(item,0) === index

    })

    }
    var arr2 = unique(arr1)

    相关文章

      网友评论

        本文标题:如何进行数组去重

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