Arithmetic operators like +, -, *, /, and % are used for mathematical calculations.
In a store context, arithmetic operators allow you to calculate totals and discounts. For example, if you have a product priced at $30 and you want to apply a 10% discount, you can calculate the discounted price using: `discountedPrice = price - (price * 0.10);`.