阅读量:2
在ES6中,我们可以使用for...of
循环来遍历数组对象。
例如,下面是一个数组对象的示例:
const arr = [1, 2, 3, 4, 5]; for (let item of arr) { console.log(item); }
输出结果:
1 2 3 4 5
注意,for...of
循环遍历的是数组对象的值,而不是下标。如果需要遍历下标,可以使用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
循环,还可以使用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中遍历数组对象的几种常用方法,根据具体需求选择适合的方法即可。