码迷,mamicode.com
首页 > Web开发 > 详细

js foreach 不能中断的现象及理解

时间:2020-12-07 12:03:22      阅读:10      评论:0      收藏:0      [点我收藏+]

标签:code   exception   nbsp   wrong   理解   prototype   oop   ret   star   

现象:

下例为一个js的foreach操作,看打印的结果,return是无法中断foreach处理的。

var testArray = [1, 2, 3, 4, 5];
testArray.forEach(element => {
    if (element == 3) {
        return;
    }
    console.log(element);
});

结果:

1
2
4
5

理解:

foreach就是用来一次遍历完数组左右元素的,如果有中断操作可以使用普通的for循环。

MDN上是这么解释的:

There is no way to stop or break a forEach() loop other than by throwing an exception. 
If you need such behavior, the forEach() method is the wrong tool. Early termination may be accomplished
with: A simple for loop A for...of / for...in loops Array.prototype.every() Array.prototype.some() Array.prototype.find() Array.prototype.findIndex() Array methods: every(), some(), find(), and findIndex() test the array elements with a predicate returning a truthy value to determine if further iteration is required.

 

js foreach 不能中断的现象及理解

标签:code   exception   nbsp   wrong   理解   prototype   oop   ret   star   

原文地址:https://www.cnblogs.com/silenceshining/p/14071512.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!