Back to Developer Roadmap

Break continue

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

4.0547 B
Original Source

Break continue

break statement, without a label reference, can only be used to jump out of a loop or a switch block.

continue statement, with or without a label reference, can only be used to skip one loop iteration.

Visit the following resources to learn more: