Summary
My group taught this unit. This one was about mathematical operators.
- Addition:
a + b - Subtraction:
a - b - Multiplication:
a * b - Division:
a / b - Exponents:
a ** b - Modulus (remainder of a / b):
a % b(written asMODin math) - Floor Division (rounds down to nearest whole number):
- In Python:
a // b - In JavaScript:
Math.floor(a / b)
- In Python:
Math follows the order of operations (PEMDAS).