[1,2,3].forEach(function(el) {
if(el === 1) break;
});
How can I do this using the new forEach method in JavaScript?
How can I do this using the new |
|||||
|
|
There's no built-in ability to
JavaScript exceptions aren't terribly pretty. An traditional Instead, use of
This works because
|
|||||||||||||||||||
|
|
Maybe I'm missing something here, but it looks like you might be falling victim of the shiny-new-toy disease. Why not just use a standard |
|||||||||||
|
|
If you would like to use Dean Edward's suggestion and throw the StopIteration error to break out of the loop without having to catch the error, you can use the following the function (originally from here):
The above code will give you the ability to run code such as the following without having to do your own try-catch clauses:
One important thing to remember is that this will only update the Array.prototype.forEach function if it already exists. If it doesn't exist already, it will not modify the it. |
|||
|
|
|
You can use every method:
for old browser support use:
more details here. |
|||
|
|
|
Also you could use |
|||||
|
|
Found this solution on another site. You can wrap the forEach in a try / catch scenario.
More details here: http://dean.edwards.name/weblog/2006/07/enum/ |
||||
|
|
|
This is just something I came up with to solve the problem... I'm pretty sure it fixes the problem that the original asker had:
And then you would call it by using:
Returning false inside the callback function will cause a break. Let me know if that doesn't actually work. |
|||
|
|