Lesson 21: break and continue
break exits the loop immediately. continue skips to the next iteration without ending the loop.
break — "stop everything". continue — "skip this round".
- break
- Exits the loop immediately.
- continue
- Skips to the next iteration.