I tried this:
for(i=0;i<5;i++)
{
for(j=i+1;j<5;j++)
{
break(2);
}
alert(1)
};
only to get:
SyntaxError: missing ; before statement
|
I tried this:
only to get:
|
||||
|
You should be able to break to a label, like so:
|
|||||||||||||||||||||
|
|
You need to name your outer loop and break that loop, rather than your inner loop - like this.
|
|||||||||||||||||||
|
code copied from http://stackoverflow.com/questions/183161/best-way-to-break-from-nested-loops-in-javascript/183197#183197 Please search before posting a question. The link was the FIRST related question I saw on the left side of this page! |
|||
|
|
|
Unfortunately you'll have to set a flag or use labels (think old school goto statements)
The label approach looks like
edit: label incorrectly placed. also see http://www.devguru.com/Technologies/ecmascript/quickref/break.html and http://www.daaq.net/old/javascript/index.php?page=js+exiting+loops&parent=js+statements |
|||
|
|
|
See Aaron's. Otherwise:
|
|||||
|
|
|
Use function for multilevel loops - this is good way:
|
|||||
|
|
|
In my opinion, it's important to keep your construct vocabulary to a minimum. If I can do away with breaks and continues easily, I do so.
Be warned, after the loop, m and k are one larger that you might think. This is because m++ and k++ are executed before their loop conditions. However, it's still better than 'dirty' breaks. EDIT: long comment @Dennis... I wasn't being 100% serious about being 'dirty', but I still think that 'break' contravenes my own conception of clean code. The thought of having multi-level breaks actually makes me feel like taking a shower. I find justifying what I mean about a feeling about code because I have coded all life. The best why I can think of it is is a combination of manners and grammar. Breaks just aren't polite. Multi level breaks are just plain rude. When looking at a for statement, a reader knows exactly where to look. Everything you need to know about the rules of engagement are in the contract, in between the parenthesis. As a reader, breaks insult me, it feels like I've been cheated upon. Clarity is much more respectful than cheating. |
|||||||||||||
|
|
|
|||||||||||
|
|
Break 1st loop:
Break both loops:
|
|||
|
|
|
|||||||||
|
alert(1). – Nathan Taylor Oct 14 '09 at 8:18