Exits (terminates) any type of loop statement.
Break LoopLabel
If omitted or 1, this statement applies to the innermost loop in which it is enclosed. Otherwise, specify which loop this statement should apply to; either by label name or numeric nesting level. If a label is specified, it must point directly at a loop statement.
LoopLabel must be a constant value - variables and expressions are not supported, with the exception of a single literal number or quoted string enclosed in parentheses. For example: break("outer")
The use of Break and Continue are encouraged over Goto since they usually make scripts more readable and maintainable.
Continue, Loop, While-loop, For-loop, Blocks, Labels