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


现象:

下例为一个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.

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM