把數組中某個值刪除,並回傳新數組,需要遍歷舊數組找到要刪除的元素
/*
* 刪除陣列中指定值
*/
Array.prototype.remove=function(value){
var len = this.length;
for(var i=0,n=0;iif(this[i]!=value){
this[n ]=this[i];
}else{
console.log(i);//測試所使用
}
}
this.length = n;
};
var arr = ['1','2','3','5','2','1','4','2','2'];
arr.remove(2);
console.log(arr);