What data type is returned by an arithmetic operation?
Numeric.
What is string concatenation?
Different strings being joined to one string.
What purpose(s) does the + plus operator serve in JavaScript?
to concatenate strings or to add numbers.
What data type is returned by comparing two values (, ===, etc)?
Boolean.
What does the += “plus-equals” operator do?
It adds the value of the right operand to a variable and assigns the result to the original variable.