The break and continue Statements

Let's learn about two useful statements in loops.

What does a break statement do?

Exit a loop early by using the break keyword. In the ...