Login    Sites MenuBlueStep

BlueStep Platform Support

RelateScript
Outline full outline 
Overview 
Data Types 
Operators 
Statements 
The if Statement 
The while Loop Statement 
The do/while Loop Statement 
The for Loop Statement 
The for/in Loop Statement 
The continue Statement 
The break Statement 
The Array Creation Statement 
Functions 
Working with Relate Data 
How Formulas Work 
Related Topics 

Syntax:
continue

Description:
The continue statement must be inside a statement block that is the body-statement of a looping statement. When the continue statement is executed, any statements after it are skipped, and the loop's condition is immediately evaluated to determine if looping should continue (except in the case of a for loop where the updaters are still executed before the condition is re-evaluated).