Introduction
The break statement stops a loop or switch early. Using levels lets you stop multiple loops at once.
When you want to exit from nested loops quickly.
When a condition inside inner loops means all loops should stop.
When you want to avoid extra checks after finding a result in nested loops.