1. 程式人生 > >JS 刪除數組中元素方法

JS 刪除數組中元素方法

ice function cti remove dex bsp arr 數組 ray

Array.prototype.remove = function(val) {
var index = this.indexOf(val);
if(index > -1) {
this.splice(index, 1);
}
};

var arr = [‘1‘,‘2‘,‘3‘];

arr.remove("2") -> arr = [‘1‘,‘3‘];

JS 刪除數組中元素方法