Introduction
Break and continue help control loops. Break stops the loop early. Continue skips to the next loop round.
Stop searching when you find what you want in a list.
Skip processing items that don't meet a condition.
Exit a loop if an error happens.
Ignore certain values but keep looping.
Improve script speed by stopping unnecessary work.