The continue Statement

This is similar to break but is encountered less frequently. It only works within loops where its effect is to force an immediate jump to the loop control statement.

Like a break, continue should be protected by an if statement. You are unlikely to use it very often.


  Go to The break Statement     Go to Index               Go to the goto Statement