Introduction
Labeled statements help you control which loop to stop or continue when you have loops inside loops.
When you want to exit 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 and need clear control over which one to break or continue.
When you want to avoid extra flags or complicated conditions to control nested loops.