From http://www.w3schools.com (Copyright Refsnes Data)
| « Previous | Next Chapter » |
The break statement will break the loop and continue executing the code that follows after the loop (if any).
Example
Try it yourself » |
The continue statement will break the current loop and continue with the next value.
Example
Try it yourself » |
| « Previous | Next Chapter » |
From http://www.w3schools.com (Copyright Refsnes Data)