/**
*删除数组指定下标或指定对象
*给Array添加remove方法
*/
Array.prototype.remove=function(obj){
for(var i =0;i <this.length;i++){
var temp = this[i];
if(!isNaN(obj)){
temp=i;
}
if(temp == obj){
for(var j = i;j <this.length;j++){
this[j]=this[j+1];
}
this.length = this.length-1;
}
}
}
/**
*使用方法
*直接调用remove方法
*/
var arr =[aaa,bbb,ccc,ddd,eee,fff]
var str ="eee";
arr.remove(3);//删除下标为3的对象
arr.remove(str);//删除对象值为“eee”