Break a forEach Loop with JavaScript
Publikováno: 22.12.2020
I’ve written a number of blog posts about JavaScript tricks: Promise tricks, type conversion tricks, spread tricks, and a host of other JavaScript tricks. I recently ran into another JavaScript trick that blew my mind: how to break a forEach loop. To break the forEach loop at any point, you can truncate the array’s length: […]
The post Break a forEach Loop with JavaScript appeared first on David Walsh Blog.
I’ve written a number of blog posts about JavaScript tricks: Promise tricks, type conversion tricks, spread tricks, and a host of other JavaScript tricks. I recently ran into another JavaScript trick that blew my mind: how to break a forEach
loop.
To break the forEach
loop at any point, you can truncate the array’s length
:
const myArray = [1, 2, 3]; myArray.forEach(item => { // ... do some stuff if(someConditionIsMet) { // Break out of the loop by truncating array myArray.length = 0; } })
By setting the array’s length
to 0
, you empty out the array and immediately halt the forEach
. Of course, emptying out the array loses its original data, so you may want to create a new array ([...myArray].forEach
) before this operation.
And of course, there will likely be a better way to get what you want without needing this trick, like using .find
or .some
, but not every trick needs to be a best practice!
The post Break a forEach Loop with JavaScript appeared first on David Walsh Blog.