javascript-operators-and-expressions Flashcards

1
Q

What data type is returned by an arithmetic operation?

A

The data type that is returned by an arithmetic operation is an integer value.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

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

The + operator is used to perform both addition and string concatenation in Javascript.

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 (, ===, etc)?

A

The data type that is returned by comparing two values is a boolean (true/false statement).

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

The += “plus-equals” operator adds the value on the right, to the variable on the left, and then assigns that value back into the variable on the left.

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