|
JavaScript Break and Continue
JavaScript break and continue Statements
There are two special statements that can be used inside loops: break and
continue.
Break
The break command will break the loop and continue executing the code that follows
after the loop (if any).
Example
<html> |
Result
The number is 0 |
Continue
The continue command will break the current loop and continue with the next
value.
Example
<html> |
Result
The number is 0 |
Gayabo
posted by Computer @ 10:49,