What data type is returned by an arithmetic operation?
Answer to a math problem; can be sum, difference, etc…
What is string concatenation?
Combining strings
What purpose(s) does the + plus operator serve in JavaScript?
Addition or for concatenation of strings
What data type is returned by comparing two values (, ===, etc)?
A boolean data type
What does the += “plus-equals” operator do?
Concatenates two values, adds the value to the current value of the variable and reassigns to the variable.