Skips the rest of a loop statement's current iteration and begins a new one.
Continue LoopLabel
If omitted or 1, this statement applies to the innermost loop in which it is enclosed. Otherwise, specify which loop this statement should apply to; either by label name or numeric nesting level. If a label is specified, it must point directly at a loop statement.
LoopLabel must be a constant value - variables and expressions are not supported, with the exception of a single literal number or quoted string enclosed in parentheses. For example: continue("outer")
Continue behaves the same as reaching the loop's closing brace:
The use of Break and Continue are encouraged over Goto since they usually make scripts more readable and maintainable.
Break, Loop, Until, While-loop, For-loop, Blocks, Labels