在ES6中,我們可以使用for...of
循環(huán)來遍歷數組對象。
例如,下面是一個數組對象的示例:
const arr = [1, 2, 3, 4, 5];
for (let item of arr) {
console.log(item);
}
輸出結果:
1
2
3
4
5
注意,for...of
循環(huán)遍歷的是數組對象的值,而不是下標。如果需要遍歷下標,可以使用Array.prototype.entries()
方法來獲取下標和值的迭代器。
const arr = [1, 2, 3, 4, 5];
for (let [index, value] of arr.entries()) {
console.log(index, value);
}
輸出結果:
0 1
1 2
2 3
3 4
4 5
除了for...of
循環(huán),還可以使用Array.prototype.forEach()
方法來遍歷數組對象。
const arr = [1, 2, 3, 4, 5];
arr.forEach((item, index) => {
console.log(index, item);
});
輸出結果:
0 1
1 2
2 3
3 4
4 5
這些是在ES6中遍歷數組對象的幾種常用方法,根據具體需求選擇適合的方法即可。