数组删除元素使用remove最优的方法

Array.prototype.remove = function(from, to) { 
	var rest = this.slice((to || from) + 1 || this.length); 
	this.length = from < 0 ? this.length + from : from; 
	return this.push.apply(this, rest); 
};

数组删除元素使用remove最优的方法_第1张图片

你可能感兴趣的:(JS数组,javascript)