1/9
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
For Loop
A for loop lets us repeat code a set number of times
While loop
A while loop lets us repeat code as long as something is true.
Condition
Code that you put inside of an if statement or while loop
Boolean
True or False value
If else statement
Control structure that lets us either run one section of code or another depending on a test
Logical operators
Used to make logical associations between boolean values
|| and &&
Comparison operators
Used to make comparisons between values
<=, >= !=, ==
Randomized
To generate or select a random object
Break statement
the break(); statement breaks out of a current loop, without executing any more code in the loop
Iteration
Repetition of instructions a specified number of times, or until a condition is met