js forEach下标
时间: 2023-09-12 14:02:35 浏览: 73
js中的for如何实现foreach中的遍历
在forEach方法中,第二个参数为可选的回调函数,可以传入当前元素的索引值,如下所示:
```
const arr = ['a', 'b', 'c'];
arr.forEach((element, index) => {
console.log(element, index);
});
```
输出:
```
a 0
b 1
c 2
```
其中index表示当前元素在数组中的索引。
阅读全文