js foreach stop loop code example
Example 1: stop foreach loop
In JavaScipt 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.
Example 2: javascript foreach break
[1, 2, 3].some(function(el) {
console.log(el);
return el === 2;
});
Example 3: foreach break js
var BreakException = {};
try {
[1, 2, 3].forEach(function(el) {
console.log(el);
if (el === 2) throw BreakException;
});
} catch (e) {
if (e !== BreakException) throw e;
}