チュートリアル Web サイトで関数のコード スニペットを見つけましたが、配列内にforEach
あるかどうかをチェックする行を除いて、すべて意味があります。i
if (i in this) {
停止条件を含む for ループが既にあるのに、どうして気にする必要があるでしょうか。
if (!Array.prototype.forEach) {
Array.prototype.forEach = function(fun /*, thisp*/) {
var len = this.length >>> 0;
if (typeof fun != "function") {
throw new TypeError();
}
var thisp = arguments[1];
for (var i = 0; i < len; i++) {
if (i in this) {
fun.call(thisp, this[i], i, this);
}
}
};
}