JS operators and expressions Flashcards

1
Q

What data type is returned by an arithmetic operation?

A

number

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is string concatenation?

A

when you join two or more strings together

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What purpose(s) does the + plus operator serve in JavaScript?

A

adds numbers and concatenates strings

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What data type is returned by comparing two values (less than sign, greater than sign, strictly equal)?

A

boolean

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does the += “plus-equals” operator do?

A

adds the value of the right side of the operation to a variable and assigns the new result back to the variable.

result += 2

is the same as

result = result + 2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly