Sambar Server Documentation
CScript Continue Statement
The
continue
statement is similar to
break
, but rather than exit from the loop, it forces an immediate jump to the loop control statement.
In a
while
loop, jump to the test statement.
In a
do
while loop, jump to the test statement.
In a
for
loop, jump to the test, and the iteration.
© 2001 Sambar Technologies. All rights reserved. Terms of Use.