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)

4\sqrt{4} can be written as 4 ** (1/2)

Unary + converts strings into numbers.

Operators in C

Modify and Assign Operators such as +=, -=, /= exist for all arithmetic operators.

Increment and Decrement Operators ++ & -- only work on variables not values.