javascript-if Flashcards

1
Q

Give 6 examples of comparison operators.

A
  1. > (less then);
  2. < (more than);
  3. > = (more than or equal to);
  4. <= (less than or equal to);
  5. === (strictly equal);
  6. !== (strictly not equal).
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What data type do comparison expressions evaluate to?

A

Boolean.

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

What is the purpose of an if statement?

A

The if statement evaluates (checks) a condition.

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

Is else required in order to use an if statement?

A

No.

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

Describe the syntax (structure) of an if statement.

A
Keyword if;
Condition;
Opening curly brace;
Code to execute if value is true;
Closing curly brace.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you compare two different expressions in the same condition?

A

Using logical operators.

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