js中的forEach循环
时间: 2024-04-02 10:27:03 浏览: 173
foreach循环
在JavaScript中,forEach循环是一种用于遍历数组或类数组对象的方法。它接受一个回调函数作为参数,在数组中的每个元素上都执行该回调函数。
以下是forEach循环的基本语法:
```
array.forEach(function(currentValue, index, array) {
// 在此处执行操作
});
```
参数说明:
- currentValue:当前正在处理的元素。
- index(可选):当前元素在数组中的索引。
- array(可选):调用forEach方法的数组。
示例代码:
```javascript
const numbers = [1, 2, 3, 4, 5];
numbers.forEach(function(number, index) {
console.log(`元素 ${number} 的索引是 ${index}`);
});
```
输出结果:
```
元素 1 的索引是 0
元素 2 的索引是 1
元素 3 的索引是 2
元素 4 的索引是 3
元素 5 的索引是 4
```
阅读全文