js遍历数组方法全部
时间: 2023-10-09 18:04:38 浏览: 91
JavaScript遍历数组的方法代码实例
JavaScript中常用的遍历数组的方法有以下几种:
1. for循环:
```
for (let i = 0; i < array.length; i++) {
// 使用array[i]访问数组元素
}
```
2. forEach方法:
```
array.forEach(function(element) {
// 使用element访问数组元素
});
```
3. map方法:
```
const newArray = array.map(function(element) {
// 使用element访问数组元素,并返回新的数组元素
return element;
});
```
4. filter方法:
```
const newArray = array.filter(function(element) {
// 使用element访问数组元素,并返回满足条件的元素组成的新数组
return condition;
});
```
5. reduce方法:
```
const result = array.reduce(function(accumulator, element) {
// 使用element访问数组元素,并根据需求累积结果到accumulator中
return accumulator;
}, initialValue);
```
6. for...of循环:
```
for (const element of array) {
// 使用element访问数组元
阅读全文