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

javascript原型:写一个合并后数组去掉同类项的方

时间:2017-07-12 18:57:46      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:tle   asc   cti   ++   efi   script   var   ges   cat   

<!DOCTYPE html>
<html>
<head>
    <title>test013_Array_prototype_unique()</title>    
</head>
<script type="text/javascript">
    Array.prototype.unique = function() {
        var a = {};
            for (var i = 0; i < this.length; i++) {
                if (typeof a[this[i]] == "undefined")
                a[this[i]] = 1; 
            }
        this.length = 0;
            for(var i in a)
            this[this.length] = i;
            return this;            
    };    
</script>
<script type="text/javascript">
    var a = [1,2,3];
    var b = [2,3,4];
    var c = a.concat(b).unique();
    console.log(c);
</script>
<body>            
</body>
</html>

例子中unique()方法是可以提成单独的文件的。

结果:

技术分享

 

javascript原型:写一个合并后数组去掉同类项的方

标签:tle   asc   cti   ++   efi   script   var   ges   cat   

原文地址:http://www.cnblogs.com/foxcharon/p/7156844.html

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