Javascript-operators-and-expressions-Q&A Flashcards
1
Q
What data type is returned by an arithmetic operation?
A
An integer value.
2
Q
What is string concatenation?
A
Concatenation is the process of appending one string to the end of another string. You concatenate strings by using the + operator.
3
Q
What purpose(s) does the + plus operator serve in JavaScript?
A
The + operator is used to perform both addition and string concatenation in JavaScript.
4
Q
What data type is returned by comparing two values (, ===, etc)?
A
Boolean I.E. true false statement
5
Q
What does the += “plus-equals” operator do?
A
adds the value on the right, to the variable on the left, and then assigns that value back into the variable on the left.