go to previous page   go to home page   go to next page

Answer:

Don't use continue.


Never Use continue

If you think that continue is just what you need inside a loop body, it is likely that the entire loop should be rewritten.

The continue statement jumps to the top of the loop. I have never seen a piece of code that was not improved by refactoring it to remove the continue statement.
--Douglas Crockford, JavaScript: the Good Parts p. 111.

QUESTION 11:

What about the break statement?