What data type is returned by an arithmetic operation?
number
What is string concatenation?
using the string operator + to combine strings together to create one string
What purpose(s) does the + plus operator serve in JavaScript?
it can serve as an addition for arithmetic operators and a string operator for concatenation
What data type is returned by comparing two values (, ===, etc)?
boolean
What does the += “plus-equals” operator do?
adds a value of the right to the left variable