Comparison Operators

5 > 1      // true
6 < 10     // true
2 >= 3     // false
3 <= 5     // true
"A" == "a" // false
"B" != "b" // true

-< less than -> greater than -<= less than or equal to ->= greater than or equal to -== is equal to -!= is not equal to

Comments