JavaScript Math
General Math Info
Operand - is the same as Arugement or Math Variables
Binary - an operator that has two operands (ex. y - x)
Unary - an operator that has a single Operand (ex. -x)
can be written as 4 ** (1/2)
Unary + converts strings into numbers.

Modify and Assign Operators such as +=, -=, /= exist for all arithmetic operators.
Increment and Decrement Operators ++ & -- only work on variables not values.