文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>本地对象Array的原型扩展

本地对象Array的原型扩展

时间:2010-12-04  来源:焱悠

我的方法
Array.prototype.del=function(){
var b={},c,i=0,l=this.length,j;
for(;i<l;i++){
c
=this.shift();
c
in b ? b[c]++ : b[c]=0;
}
for(j in b){
if(b[j]>0)this.push(+j||j);
}
return this;
}
var a=[1,2,2,3,3,3,'a','b','b'];
alert(a.del());

 

果果的去重方法
Array.prototype.del=function(){
return (function (i, n, j, u, o){
for (; i < j; i++) {
o
= this[i];
o
in u ? 0 : (u[this[n++] = o] = 1)
}
this.length = n;
return this
}).call(
this, 0, 0, this.length, {})
}
var a=[1,2,2,3,3,3,'a','b','b'];
alert(a.del())
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载