Big Idea 3 - Unit 3
📅 October 11, 2024
🧮 Summary
This unit was taught by my group and focused on mathematical operators in Python and JavaScript. These operators are essential for performing calculations in code.
Operators Covered:
- Addition:
a + b - Subtraction:
a - b - Multiplication:
a * b - Division:
a / b - Exponents:
a ** b - Modulus (remainder):
a % b(Python & JS) - Floor Division (rounds down):
- Python:
a // b - JavaScript:
Math.floor(a / b)
- Python: