Comparison Operators Flashcards
1
Q
==
A
If var or values are different, (true or false)
2
Q
== exp 7==9
A
false
3
Q
== exp 4==4
A
true
4
Q
===
A
=== is Identical to and the same type
5
Q
!=
A
!= is not equal to
6
Q
!==
A
!== is not identical
7
Q
> =
A
> = is greater than or equal to
8
Q
> =
A
> = is greater than
9
Q
<=
A
<= is less than or equal to
10
Q
<=
A
<= is less than
11
Q
== exp 7==9
A
false
12
Q
== exp 4==4
A
true
13
Q
==
A
== is equal t0
14
Q
===
A
=== is Identical to and the same type
15
Q
!=
A
!= is not equal to