Contents |
|
Loop | Errors |
Breaks are used to jump to a different line in your code, or to break out of a block of code.
Example:
break can be used to break out of a loop.
continue can be used to jump to the next iteration of a loop.
Loop | Errors |