Search Results
Searching for: Loop
While Loop
Language: Ruby
The while loop executes a block of code while a boolean expression evaluates to true. It terminates as soon as the expression evaluates to false. The boolean expression is evaluated before each iteration.
For Loop
Language: JavaScript
The for loop is used to use a control structure that executes a block of code a specified number of times.
While Loop
Language: JavaScript
The while loop executes a block of code while a boolean expression evaluates to true. It terminates as soon as the expression evaluates to false. The boolean expression is evaluated before each iteration.
< Previous Page | Next Page >