配列から要素を削除するための関数を 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)
ます。おそらくそれを理解すれば、残りはより明確になるでしょう。ここで何が起こっているのかを正確に推測する助けがあれば大歓迎です。ありがとう。