Operators are how beginners make JavaScript do real work. A small shopping calculation is enough to practice arithmetic and see the result on screen.
const itemPrice = 12;
const itemCount = 5;
const shipping = 3;
const total = itemPrice * itemCount + shipping;
Multiply the item price by the item count before adding shipping.