What data type is returned by an arithmetic operation?
a number
What is string concatenation?
when you add other strings/ingredients together using the + operator in an expression to create a NEW string/product.
What purpose(s) does the + plus operator serve in JavaScript?
mathematical and concatenation. its a dual operator. depends on if the values are string or numbers
What data type is returned by comparing two values (<, >, ===, etc)?
true or false.
What does the += “plus-equals” operator do?
it adds values on the right together and assigns the results to the variable of the left