Microsoft® JScript
continue Statement
See Also
Language Reference 


Description
Stops the current iteration of a loop, and starts a new iteration.
Syntax
continue;
Remarks
The continue statement can only be used inside a while, for, or for..in loop. Executing the continue statement stops the current iteration of the loop and continues program flow with the beginning of the loop. This has the following effects on the different types of loops:

© 1996 by Microsoft Corporation.


Casa de Bender