Use operators to perform operations on values.
Assignment Operator:
=
Equality Operator:
==
Inequality Operator:
!=
Less than or Equal to:
<=
Greater than or Equal to:
>=
Addition:
+
Subtraction:
–
Division:
/
Multiplication:
*
Increment:
++
Decrement:
—
Logical Not:
!
Logical And:
&&
Logical Or:
||