Operations
Operations let you do modify or compare values.
Math Operations
These are used to do math with data.
Operator
Purpose
Syntax
Addition
Adds two numbers.
a + b
Subtraction
Subtracts two numbers.
a - b
Multiplication
Multiplies two numbers.
a * b
Division
Divides two numbers.
a / b
Modulus
Divides two numbers, but gets the remainder.
a % b
Unary Operations
These are used to
Unary Operator
Purpose
Example
+=
Adds n to the variable.
num += 3
-=
Subtracts n from the variable.
num -= 16
*=
Multiplies the variable by n.
num *= 3
/=
Divides the variable by n.
num /= 10
Logic Operators
Logic Operator
Purpose
Example
&&
||
!
Last updated