Answers for "Control Flow"

0

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.


*/
Posted by: Guest on February-14-2022

Browse Popular Code Answers by Language