Continue Statement
This lesson will discuss continue statements
We'll cover the following...
What Is a continue
Statement?
The continue
statement, when encountered inside a loop, skips the execution of the rest of the statements in the loop’s body for the current iteration and returns the control to the start of the loop.
The following illustration explains the concept:
...