JavaScript倒序遍历
单元表格:
方法 | 描述 |
for循环倒序 | 使用for循环结合数组长度和递减索引实现倒序遍历 |
for…of循环倒序 | 使用for…of循环结合Array.from()方法和reverse()方法实现倒序遍历 |
reverse()方法 | 使用数组的reverse()方法将数组元素顺序反转,然后进行正序遍历 |
Array.from().reverse().forEach() | 使用Array.from()方法将数组转换为可迭代对象,然后调用reverse()方法反转顺序,最后使用forEach()方法进行遍历 |
1、for循环倒序遍历:
const arr = [1, 2, 3, 4, 5]; for (let i = arr.length - 1; i >= 0; i--) { console.log(arr[i]); }
2、for…of循环倒序遍历:
const arr = [1, 2, 3, 4, 5]; arr.reverse(); // 反转数组元素顺序 for (const item of arr) { console.log(item); }
3、reverse()方法:
const arr = [1, 2, 3, 4, 5]; arr.reverse(); // 反转数组元素顺序 arr.forEach((item) => { console.log(item); });
4、Array.from().reverse().forEach():
const arr = [1, 2, 3, 4, 5]; arr.reverse().forEach((item) => { console.log(item); });
相关问题与解答:
1、Q: for循环倒序遍历和for…of循环倒序遍历有什么区别?
A: for循环倒序遍历需要手动控制索引的递增或递减,而for…of循环倒序遍历则通过反转数组元素顺序来实现,两者都可以实现倒序遍历,但使用方式略有不同。
2、Q: reverse()方法和Array.from().reverse().forEach()方法有何区别?
A: reverse()方法是直接修改原数组的元素顺序,然后可以使用正序遍历来访问倒序的元素,而Array.from().reverse().forEach()方法是先将原数组转换为可迭代对象,然后反转顺序,再进行遍历,两者都可以实现倒序遍历,但reverse()方法会改变原数组,而Array.from().reverse().forEach()方法不会。
感谢觅读,欢迎评论和关注点赞!
```