我如何履行与<代码”相同的职能。 ArrayList.remove(o)?
我最接近的是
Array.prototype.remove = function(o) {
var index = this.indexOf(o);
if(index == -1) {
return;
}
return this.splice(index, index);
}
但它在第二行投下了一个错误,声称有<编码>indexOf(o)。 (cannot found function indexOf(
)