Tuesday, April 23, 2024 15:40

Posts Tagged ‘continue operator’

Continue operator

Monday, January 16th, 2017

In the last article, we spoke about the Break operator being used to immediately stop a loop and continue the execution with the statements that follow after the loop. The Continue operator works somehow in the same way, with the only difference that it will only make the execution skip the current iteration of the loop.… Read more


Follow the white rabbit