Back to Developer Roadmap

break

src/data/roadmaps/golang/content/[email protected]

4.0635 B
Original Source

break

Immediately exits innermost loop or switch statement. In nested loops, only exits immediate loop unless used with labels to break outer loops. Essential for early termination when conditions are met. Helps write efficient loops that don't continue unnecessarily.

Visit the following resources to learn more: