Introduction
Labeled break and continue help you control loops more precisely when you have nested loops.
When you want to stop an outer loop from inside an inner loop.
When you want to skip to the next iteration of an outer loop from inside an inner loop.
When you have multiple loops inside each other and need clear control over which loop to break or continue.
When normal break or continue only affects the closest loop but you want to affect a specific outer loop.