Javascript Conditionals Flashcards
1
Q
What does strictly equal mean?
A
It’s the (===) sign and it checks whether its two operands are equal, returning a Boolean result.
2
Q
What is the logical and operator?
A
- It’s two ampersands (&&)
3
Q
Can you name some comparison operators?
A
Strictly equal (===), greater than ( > ), less than ( < ), greater than or equal to ( >= ), less than or equal to ( <= ).