| “==” | Equal | Returns ‘true’ when operand values are equal. |
| “===” | Strict Equal | Returns ‘true’ when operands value and type are equal. |
| “!=” | Not Equal | Returns ‘true’ when operands values are not equal. |
| “!==” | Strict Not Equal | Returns ‘true’ operands value and/or type are not equal. |
| “>” | Greater Than | Returns ‘true’ when left operand is greater than the right operand. |
| “<" | Less Than | Returns ‘true’ when left operand is less than the right operand. |
| “>=” | Greater Than or Equal | Returns ‘true’ when left operand is greater than or equal to the right operand. |
| “<=" | Less Than or Equal | Returns ‘true’ when left operand is less than or equal to the right operand. |