for in 遍历数组会怎样
时间: 2023-10-18 22:02:34 浏览: 67
JavaScript中利用for循环遍历数组
5星 · 资源好评率100%
使用 `for in` 遍历数组会遍历数组中的每一个元素,其中每次迭代将会返回数组元素的值,而不是索引。示例代码如下:
```javascript
const arr = [1, 2, 3];
for (const element of arr) {
console.log(element);
}
// Output: 1 2 3
```
需要注意的是,使用 `for in` 遍历数组也是可以的,但是会返回数组的索引,而不是元素的值。示例代码如下:
```javascript
const arr = [1, 2, 3];
for (const index in arr) {
console.log(index, arr[index]);
}
// Output: 0 1 1 2 2 3
```
因此,在遍历数组时,建议使用 `for of` 循环。
阅读全文