What data type is returned by an arithmetic operation?
Number.
What is string concatenation?
When two strings are combined.
What purpose(s) does the + plus operator serve in JavaScript?
Add numbers or concatenate strings.
What data type is returned by comparing two values (, ===, etc)?
Boolean (true of false).
What does the += “plus-equals” operator do?
It adds the value of the right operand to the variable and assigns the result of the variable.