javaScript循环遍历数组
时间: 2023-09-02 08:09:52 浏览: 112
JavaScript中利用for循环遍历数组
JavaScript中可以使用`for`循环、`forEach`方法、`for...in`循环、`for...of`循环等方法来遍历数组。下面是一些示例:
1. 使用for循环遍历数组:
```
var arr = [1, 2, 3, 4, 5];
for (var i = 0; i < arr.length; i++) {
console.log(arr[i]);
}
```
2. 使用forEach方法遍历数组:
```
var arr = [1, 2, 3, 4, 5];
arr.forEach(function(value, index, array) {
console.log(value);
});
```
3. 使用for...in循环遍历数组(不推荐):
```
var arr = [1, 2, 3, 4, 5];
for (var index in arr) {
console.log(arr[index]);
}
```
4. 使用for...of循环遍历数组:
```
var arr = [1, 2, 3, 4, 5];
for (var value of arr) {
console.log(value);
}
```
以上四种方法都可以用来循环遍历数组,不同的方式适用于不同的场景。其中`for`循环和`for...of`循环是最常用的两种方式。
阅读全文