DEV Community

JEGADESHWARAN B
JEGADESHWARAN B

Posted on

Continue statement

Initial

The continue statement skips current iteration.
It moves to the next loop cycle.

Depth

It does not terminate the loop.
It only skips remaining code in that iteration.

More Depth
Used to avoid specific conditions inside loops.

Final

The continue statement skips to the next iteration of a loop

Top comments (0)