Control Flow
/*
Continue command will continue to the next iteation in a loop
Example, in a for loop if you put continue under a statment or contition
it will avoid whats next and continue to the next iteration.
The "break;" command will simply end the loop.
If you put a break under a conditional statment it will simply get our and end the iterations of a loop.
*/
|