5.1.6
Relational operators
The following relational operators are available.
|
|
==
|
Compares whether values of first term and second term are equivalent.
|
!=
|
Compares whether values of first term and second term are not equivalent.
|
>
|
Compares whether value of first term is greater than value of the second.
|
>=
|
Compares whether value of first term is greater than or equivalent to the value of the second term.
|
<
|
Compares whether value of first term is smaller than value of the second.
|
<=
|
Compares whether value of first term is smaller than or equivalent to the value of the second term.
|