for each和for of的区别

简介: for each和for of的区别

forEach方法:

       forEach是Array对象的方法,可以直接使用。

forEach会对数组中的每个元素执行指定的回调函数,但无法在回调函数中使用break或return来中止循环。

       回调函数接受三个参数:当前遍历的元素值、当前遍历的索引和整个数组本身。

       forEach不返回任何值,它只是用于遍历数组并执行操作。

let arr = [1, 2, 3, 4];
 
arr.forEach((element, index) => {
  console.log(`Element at index ${index}: ${element}`);
});
 
//输出结果
Element at index 0: 1
Element at index 1: 2
Element at index 2: 3
Element at index 3: 4
  1. for...of循环:
  2. for...of是ES6引入的语法,用于遍历具有迭代器的可迭代对象(如数组、字符串、set  , map等)。
  • for...of支持使用breakreturn来中止循环。
  • 在每次迭代中,通过of关键字将当前元素的值赋给一个变量,可以直接访问该值。
const arr = [1, 2, 3, 4];
 
for (const element of arr) {
  console.log(`Element: ${element}`);
}
//输出结果
Element: 1
Element: 2
Element: 3
Element: 4
  • forEach适用于需要对每个数组元素执行相同操作的情况,而且不需要中止循环。
  • for...of适用于需要在遍历过程中使用breakreturn来中止循环的情况,或者需要直接访问当前元素的值。此外,for...of也适用于遍历其他可迭代对象,如字符串、Set和Map等。
相关文章
|
2月前
|
JavaScript 前端开发 索引
for in与for of的区别
for in与for of的区别
69 0
|
3月前
i++和++i的区别
i++和++i的区别
47 3
|
7月前
|
索引
for each和for of的区别
for each和for of的区别
32 0
|
7月前
|
Web App开发 安全 应用服务中间件
浅谈C/S vs. B/S的区别
浅谈C/S vs. B/S的区别
210 0
for in 和 for of的区别
for in 和 for of的区别
183 1
|
C语言
%C和%S区别
%C和%S区别
271 0
backgroundColor与 tintColors的区别
backgroundColor与 tintColors的区别
128 0
backgroundColor与 tintColors的区别
写出 && 和 & 的区别。
写出 && 和 & 的区别。
107 0
|
存储 前端开发 Java
@SessionAttributes 和 @SessionAttribute的区别
@SessionAttributes 和 @SessionAttribute的区别
|
编解码 网络性能优化 存储
VBR与CBR的区别是什么?
<pre id="best-content-153760330" class="best-text mb-10">VBR是动态<a target="_blank" class="inner-link decor-none" href="http://zhidao.baidu.com/search?word=%E7%A0%81%E7%8E%87&amp;fr=qb_search_exp&am
10856 1