js-数组去重
Posted alan-alan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js-数组去重相关的知识,希望对你有一定的参考价值。
<script> // 重复 Array.prototype.unique3 = function(){ var res = []; var json = {}; console.log(this) for(var i = 0; i < this.length; i++){ if(!json[this[i]]){ res.push(this[i]); json[this[i]] = 1; } } return res; } function unique(arr){ var json={}; var res =[]; for(var i=0;i<arr.length;i++){ // arr[i] var item = arr[i]; if(!json[item]){ res.push(arr[i]); json[item]= 1; } } return res; } var arr = [112,112,34,‘你好‘,112,112,34,‘你好‘,‘str‘,‘str1‘]; console.log(arr.unique3()); console.log(‘test‘); console.log(unique(arr)); </script>
以上是关于js-数组去重的主要内容,如果未能解决你的问题,请参考以下文章