What data type is returned by an arithmetic operation?
return a single numerical value.
What is string concatenation?
Joining together strings in JavaScript using the + operator.
What purpose(s) does the + plus operator serve in JavaScript?
Concatenation and addition.
What data type is returned by comparing two values (, ===, etc)?
A Boolean value.
What does the += “plus-equals” operator do?
Addition assignment.
adds the value of the right operand to a variable and assigns the result to the variable.