Comparison operations:
*List of Comparison Operators
| Operator | Comparison | Example |
|---|---|---|
| == | Equal | i == 0 |
| === | Equal Value and Type | i === "5" |
| != | Not Equal | i != 5 |
| !== | Not Equal Value or Type | i !== 5 |
| > | Greater than | i > 5 |
| < | Less than | i < 5 |
| >= | Greater than or equal | i >= 5 |
| <= | Less than or equal | i <= 5 |