JS OPERATORS Flashcards
1
Q
Exponentiation
A
(** is for exponentiation/exponents) // Raises the first number to the power of the second number
2
Q
Modulus/ Modulo
A
Returns the division remainder
Percentage sign “%” is used for Modulus
3
Q
Order of operations in JavaScript
A
Parentheses, Exponents, Multiplication, Division, Modulus, Addition, and Subtraction