4.9. break & continue

You've see break already, we ended each case of our switch statement with one. break exits out of a loop.

continue is similar to break in that it short circuits the execution of a code block but continue brings execution back to the start of a loop.