Level 74
Level 76
8 words 0 ignored
Ready to learn
Ready to review
Ignore words
Check the boxes below to ignore/unignore words, then click save at the bottom. Ignored words will never appear in any learning session.
Ignore?
switch (expression) { case n: code break; default: code }
statement used to select one of many blocks of code
for (start; condition; end) { code }
The For Loop
for (variable in sequence) { code }
The For In Loop
While Loop
loops through a block of code as long as a specified condition is true
while (condition) { code }
While Loop
do { code } while (condition);
The Do While Loop
continue;
breaks one iteration (in the loop)
label: statements
labels statements