The break and continue Statements

What does break do to a loop?

The break statement ends a loop when a certain condition occurs.

What does continue do to a loop?

The continue keyword breaks the loop and returns to the beginning of the loop.