+
Addition
Adds two numbers together
5 + 3 = 8
๐ฐ Use for: Total prices, combining amounts
โ
Subtraction
Subtracts one number from another
10 - 4 = 6
๐ต Use for: Change, discounts, remaining amounts
*
Multiplication
Multiplies two numbers
6 * 7 = 42
๐ Use for: Repeated amounts, price ร quantity
/
Division
Divides one number by another
20 / 4 = 5
๐ฐ Use for: Splitting evenly, averages
%
Modulus
Finds the remainder after division
17 % 5 = 2
๐ฏ Use for: Odd/even checks, leftover amounts
๐ป Live Code Example
Here's how to write a program that calculates pizza cost:
let pricePerPizza = 12;
let quantity = readInt("How many pizzas? ");
let total = pricePerPizza * quantity;
console.log("Your total is $" + total);