34,333
edits
Changes
→Skipping Statements in Current Loop Iteration
== Skipping Statements in Current Loop Iteration ==
The ''break'' statement, when encountered in a loop breaks skips all remaining statements in the loop body and breaks the loop. The ''continue'' statement also skips all remaining statements in the loop for the current interation, but returns to the top of the loop and allows it to continue running.