Continue Statement
This statement skips the remainder of a loop iteration and then continues processing the next iteration of the loop.
This statement has the following syntax:
continue [label];
You can use the continue statement in for, select, and while loops. For more information about other loop statements, see: