Can be used in place of an if...else statement, that allows code to be shorter and more concise.
Back
while loop
Front
Loop that repeats indefinitely as a condition remains true.
Back
&&
Front
AND logical operator.
Back
Compound operator
Front
Binary/arithmetic operator precedes the equal sign when processing arithmetic.
Back
for in loop
Front
Loop that repeats a specified amount of times.
Back
switch Conditional statement
Front
Logic that utilizes cases to determine whether a condition matches the original variable being tested.
Back
..<
Front
Half-open range operator using in for...in loops.
Back
break
Front
Terminates the current loop or conditional logic.
Back
if Conditional Statement
Front
Logic that tests to see if a condition(s) is true.
Back
Loop
Front
Broad term used for statements that repeat for a desired amount of times.
Back
default:
Front
Statement used in a switch that allows the conditional logic to execute a different set of code if all other cases do not match the switch variable being tested.
Back
if...else if Conditional Statement
Front
Logic that selects between two or more different actions based on a condition resulting in true.
Back
if...else Conditional Statement
Front
Logic that selects between two different actions based on a condition resulting in true.
Back
repeat while loop
Front
Bottom-controlled Loop that repeats indefinitely as a condition remains true.