标签: javascript arrays
javascript Array.prototype.forEach()回调具有以下形式:
Array.prototype.forEach()
arr.forEach(function callback(currentValue[, index[, array]]) { //your iterator }[, thisArg]);
array参数的描述是:
array(可选)要应用forEach()的数组。
我的问题是,为什么数组参数甚至存在?如果它在相同范围内,为什么不将arr传递给回调或直接引用它呢?
arr