+ |
Adds two numbers together/makes a number positive |
- |
Subtracts one number from another/makes a number negative |
* |
Multiplies two numbers together |
/ |
Divides one number by another |
^ |
Raises one number to the power of another |
% |
Divides one number by another and returns the remainder |
== |
Checks if one number is equal to another |
!= |
Checks if one number is not equal to another |
< |
Checks if one number is less than another |
> |
Checks if one number is greater than another |
<= |
Checks if one number is less than or equal to another |
>= |
Checks if one number is greater than or equal to another |
and |
Returns true if both numbers are truthy |
or |
Returns true if one or both numbers are truthy |
not |
Returns false if number is truthy, otherwise returns true |