Used inside conditions to compare values:
==
equal!=
not equal<
less than>
greater than<=
less than or equal>=
greater than or equalUsed to combine conditions:
&&
(AND) → true if both are true||
(OR) → true if at least one is true!
(NOT) → reverses condition