Continue Statement

Before you take a look at this tutorial, ensure you've watched the video in order to understand the basics.

So, by the end of this tutorial you know how to use both break and continue statements.

Just remember: On encountering a break statement, the rest of the statements in the loop are ignored and the loop terminates. On encountering a continue statement, the rest of the statements in the loop are ignored for the current iteration and next iteration is started.

In the next video, we will take a look at functions. Meanwhile, try practicing and be sure to comment any doubts you may have.

Cya!