A value that can either be "true" or "false".
What is a boolean?
An operator that sets a value for a variable.
What is an assignment operator?
A statement that only runs code if one specific condition is ture.
What is a "if" statement?
A loop that loops code as long as a condition is true.
What is a "while" loop?
A function that is already part of the language and doesn't have to be defined.
What is a built-in function?
A value that can be any number without a fraction or decimal part. (but can be positive or nagative)
What is an integer?
An operator used to perform basic mathematical computations.
What is an arithmetic operator?
A statement that can run code either if the specified condition is met or if it is false.
A loop that loops code a certain number of times or for every iteration of something.
What is a "for" loop?
A function that is defined by the user and can have any number of parameters.
What is a named function?
A value that can be any combination of characters including spaces.
What is a string?
An operator that compares different values.
What is a relational operator?
A statement that can either run code if a condition is true or false, and have other statements run within it dependent on the result of the other statement.
What is a nested "if-else" statement?
A loop that iterates through numbers in an array, list, or any other type of group.
What is a "for-each" loop?
An unnamed function that is defined in another function and not used many times.
What is an anonymous function?
A value that can be any number.
What is a float?
An operator that is used to combine different booleans.
What is a logical operator?
What is a "switch" statement?
A loop that runs no matter what but checks a condition at the end.
What is a "do" loop?
A function that calls itself within itself to break down a problem.
What is a recursive function?
A value that can interact with other parts of the code.
What is an object?
An operator that manipulates individual bits and bytes of data.
What is a bitwise operator?
What is an operator used to make one-line conditional statements?
What is a conditional/ternary operator?
What is a nested loop?
A function that uses other functions as parameters.
What is a higher order function?