//字符串去重
String.prototype.unique=function(){
var temp = {}
var newStr = ''
for(var i=0; i< this.length;i++){
if(!temp.hasOwnProperty(this[i])){
temp[this[i]]=this[i]
newStr+=this[i]
}
}
return newStr
}
js字符串去重
最新推荐文章于 2024-07-08 09:46:59 发布