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.
The break statement ends a loop when a certain condition occurs.
The continue keyword breaks the loop and returns to the beginning of the loop.