When the continue keyword is used, the rest of that particular iteration is skipped. The loop continues on to the next iteration. We can say that it doesn’t break the loop, but it skips all the code in the current iteration and moves to the next one.
We don’t need to get into too much detail, so here’s a simple example: