Operators
- TERNARY CONDITION (? :) : one-line condition (shorthand for IF)
- OR (or or ||) : condition where at least one case is true
- POWER (**) : calculate an exponent
- MODULUS (%) : calculate a division remainder (modulo)
- DIVIDE (/) : divide two values
- MULTIPLY (*) : multiply two values
- MINUS (-) : subtract two values
- PLUS (+) : add two values
- AND (and or &&) : condition where all cases must be true
- NOT (not or !) : invert a condition (negation)
- MORE THAN OR EQUAL TO (>=) : compare two values
- LESS THAN OR EQUAL TO (<=) : compare two values
- MORE THAN (>) : compare two values
- LESS THAN (<) : compare two values
- NOT EQUAL TO (!=) : test an inequality
- EQUAL (==) : test an equality