break
statement has the following syntax:
statement-break:
break;
The ‘;’ character at the end of the statement is mandatory.
The break statement may be used:
In addition, break
statement always ends the current scope, even if it is used outside of the switch or loops.