What data type is returned by an arithmetic operation?
A number
What is string concatenation?
Process of joining together two or more strings to create a new string
What purpose(s) does the + plus operator serve in JavaScript?
Concatenation and addition when dealing with numbers
What data type is returned by comparing two values ( < , > , === , etc) ?
Boolean
What does the += “plus-equals” operator do?
Add the right of the assignment operator to the variable and then assigns the result to the variable