码迷,mamicode.com
首页 > 编程语言 > 详细

JS:利用for循环进行数组去重

时间:2017-10-11 10:44:48      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:script   for循环   去重   for   stat   nbsp   doc   bsp   ++   

 <script>

 var a = [1, 3, 2, 4, 5, 3, 2, 1, 4, 6, 7, 7, 6, 6];                        

//示例数组
    var b = [];

    for(var i = 0; i < a.length; i++) {
        var status = 0;
        for(var j = 0; j < b.length; j++) {
            if(a[i] == b[j]) {
                status = 1;
                break;
            }
        }
        if(status == 0) {
            b.push(a[i]);
        }
    }
    for(var x in b) {
        document.write(b[x] + "&nbsp;");
    }
</script>

JS:利用for循环进行数组去重

标签:script   for循环   去重   for   stat   nbsp   doc   bsp   ++   

原文地址:http://www.cnblogs.com/cmzhphp2017/p/7648719.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!