What data type is returned by an arithmetic operation?
Numbers
What is string concatenation?
Joining two or more strings to create one new string
What purpose(s) does the + plus operator serve in JavaScript?
Concatenating strings or addition between numbers
What data type is returned by comparing two values (<, >, ===, etc)?
Boolean
What does the += “plus-equals” operator do?
Adds the value of the right operand to a variable and assigns the result to the variable