What data type is returned by an arithmetic operation?
Number
What is string concatenation?
combining 2 strings by using + operator into 1 string
What purpose(s) does the + plus operator serve in JavaScript?
concatenation (for string) and addition –> when adding string + number it becomes a string!!
What data type is returned by comparing two values (, ===, etc)?
boolean
What does the += “plus-equals” operator do?
whatever is on the right side is added to the current value and is being re-assigned into the variable.