美文网首页
js数组去重

js数组去重

作者: lvyweb | 来源:发表于2019-12-05 14:03 被阅读0次

    标签(空格分隔): js


    /**
     * 数组去重
     * @param {*} array 
     */
    function unique(array){
        var temp = []; //一个新的临时数组
        for(var i = 0; i < array.length; i++){
            if(temp.indexOf(array[i]) == -1){
                temp.push(array[i]);
            }
        }
        return temp;
    }
    var aa = [1,2,2,4,9,6,8,5,2,8,5,6,5];
    console.log(unique(aa));
    

    相关文章

      网友评论

          本文标题:js数组去重

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