JS数组去重与取重的示例代码
方法一:去重复数据复制代码 代码如下:<script>Array.prototype.distinct=function(){var a=[],b=[];for(var prop in this){ var d = this[prop]; if (d===a[prop]) continue; //防止循环到prototype if (b[d]!=1){ a.push(d); b[d]=1; }}return a;}var x=["a","b",...