1>= // greater than or equal
2<= // less than or equal
3> // greater than
4< // less than
5== // equals
6=== // strictly equals
7!= // not equals
8!== // stricly not equals
1The greater than or equal operator ( >= ) returns true if the left operand is greater than or equal to the right operand, and false otherwise.