Operators
- Operators let you create expressions
- Operators take 1-3 values
- You can build pretty complex expressions (with order of operations)
const a = 1;
const b = a + 2;
let c = a * 3 - b;
c++;
const d = "The answer is: " + c;
const f = c > b;
9 / 21