The What
Description
The continue
skips the rest of the current control structure’s code. It takes the control to the closing code block. The loop can then continue. It works with these control structures:
Parameters
levels
- (optional) Indicates how many nested control structure levels to break out of. The default value is 1, meaning it breaks out of the immediate (current) control structure.
Show It in ActionBasic
Let’s see the continue
in action. In this video, you will see how it works.
Hands off the keyboard. Web development starts by thinking first, then planning it out, and then coding it.
Go Deep Pro
In this video, you will go deeper into the instruction to discover further how and why it works.