JavaScript noob Alert !!!我们是否有任何特定原因使用[]括号表示函数的参数?
forEach函数的语法如下所示
arr.forEach(function callback(currentValue [, index [, array]]) {
//your iterator
}[, thisArg]);
这就是它在MDN上的表示方式
为什么我们按原样而不是简单地表示语法
arr.forEach(function callback(currentValue , index , array) {
//your iterator
};
还有什么是[,thisArg];
喵喵时光机
慕沐林林
相关分类