Changes

Jump to: navigation, search

JavaScript Flow Control and Looping

302 bytes added, 17:49, 24 April 2007
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.

Navigation menu