js数组去重方法封装
Posted summer-qd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js数组去重方法封装相关的知识,希望对你有一定的参考价值。
Array.prototype.unique = function (){ var temp = {}, arr = [], len = this.length; for(var i = 0; i < len; i++){ if(!temp[this[i]]){ temp[this[i]] = ‘abc‘; arr.push(this[i]); } } return arr; }
以上是关于js数组去重方法封装的主要内容,如果未能解决你的问题,请参考以下文章