continue
Statement
continue
statement breaks one iteration (in the loop), if a specified condition occurs, and continues with the next iteration in the loop.
This example skips the value of 4: |
|
This is, in effect, a goto just past the body of the loop, to the loop’s end.
The continue statement performs such an action.
|