Category "continue"

Java - Skipping element of outer loop if condition is true for any element in inner loop

Here's the code: for ( Element e : elements ){ boolean shouldContinue = false; for ( OtherElement oe : otherElements ){ if ( e.magicalCondition(

Why are "continue" statements bad in JavaScript? [closed]

In the book Javascript: The Good Parts by Douglas Crockford, this is all the author has to say about the continue Statement: The continue