javascript foreach
时间: 2023-04-22 16:01:22 浏览: 116
javascript forEach通用循环遍历方法
5星 · 资源好评率100%
JavaScript 中的 forEach 方法可以遍历数组中的每一项,并对其执行指定的函数。语法如下:
```
array.forEach(function(currentValue, index, arr), thisValue)
```
- currentValue:当前遍历到的数组元素的值。
- index:当前遍历到的数组元素的索引。
- arr:当前遍历的数组。
- thisValue:在函数中作为 this 对象。
示例:
```
let arr = [1, 2, 3, 4, 5];
arr.forEach(function(item, index) {
console.log(item, index);
});
```
这将输出数组中每一项的值和索引。
阅读全文