| Operator | Purpose                               | Example        | Output |
|----------|----------------------------------------|---------------|-------|
| =        | Assignment                            | let x = 5;     | Stores 5 in x |
| ==       | Loose equality (with type coercion)   | 5 == '5'      | true  |
| ===      | Strict equality (no type coercion)     | 5 === '5'     | false |