What data type is returned by an arithmetic operation?
number data types
What is string concatenation?
a string that is formed through a combination of multiple strings
What purpose(s) does the + plus operator serve in JavaScript?
sum of numeric operations or string concatenation
What data type is returned by comparing two values (<, >, ===, etc)?
boolean
What does the += “plus-equals” operator do?
adding a value to an existing variable and assigning it back to that same variable