Break statement

Break ends execution of the current for, while or do..while structure.

When ChaosPro encounteres a break statement, code execution will continue right after the loop.
In case of a for loop, the iteration expression won’t be executed (as I said: goes straight forward without looking back, upto the point right after the loop).

break