我在 john resig 博客上找到了他的函数,用于从数组中删除元素。它真的很好用!但我真的不明白如何..
// Array Remove - By John Resig (MIT Licensed)
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);
};
我对这个声明发生了什么感到困惑:(to || from) + 1 || this.length)
对于初学者来说;也许一旦我明白了这一点,其余的就会变得更加清楚。非常感谢任何帮助弄清楚这里发生了什么。谢谢。