• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/12

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

12 Cards in this Set

  • Front
  • Back
break
Break out of the enclosing loop.
case
Identifies a block of code inside a "switch" statement.
continue
Continue at the start of the enclosing loop.
default
Identifies the default block of code in a 'switch' statement.
do while
Do while loop.
else
Inside if, performs actions if statement is false.
else if
Inside if, performs actions if alternate statement is true.
for
For loop.
for...in
Enumerates the children of an object.
if
Performs a condition if a statement is true.
switch
Performs a block of code based on a condition.
while
Perform actions while the condition is true.