JavaScript Operators Explained Simply
- + Addition
- - Subtraction
- * Multiply
- / Divide
- % Modulus
- ++ Increment
- -- Decrement
const price = 12;
const quantity = 3;
let total = price * quantity;
total -= 5;
console.log(total);
console.log(2 + 3 * 4);
console.log((2 + 3) * 4); AI panel
Ask AI to clarify the parts you don’t fully understand, or go more in depth with MDN documentation.