js循环遍历数组对象
时间: 2023-11-21 07:55:01 浏览: 95
js数组循环遍历数组内所有元素的方法
5星 · 资源好评率100%
JavaScript中,我们可以使用for循环和for...of循环来遍历数组对象。
使用for循环遍历数组对象的语法如下:
```javascript
const arr = [1, 2, 3, 4, 5];
for (let i = 0; i < arr.length; i++) {
console.log(arr[i]);
}
```
使用for...of循环遍历数组对象的语法如下:
```javascript
const arr = [1, 2, 3, 4, 5];
for (const num of arr) {
console.log(num);
}
```
需要注意的是,for...of循环每次迭代都将返回一个值,而不是索引。
阅读全文