What data type is returned by an arithmetic operation?
Number
What is string concatenation?
Adding two or more strings together using the plus operator
What purpose(s) does the + plus operator serve in JavaScript?
To add numbers, To concat strings, to coerce data types
What data type is returned by comparing two values (, ===, etc)?
boolean
What does the += “plus-equals” operator do?
Add and store the result into the variable declared on the left.