The "Break" Statement

The break statement is a simple, one-word statement that breaks out of any loop (if, do, while, for, switch, repeat), or terminates the execution of that loop.
A break statement looks like this:
break;
Quite simple, but add it to any loop and it will stop the loop execution right there.