Signals
A signal is a value Angular tracks. count = signal(0). Read count() in the template. Update with count.set(1) or count.update(n => n + 1). Don’t do count().n++ on an object — replace or use update.
Board: click +1. Template shows the new number. Trap: treating a signal like a plain variable and mutating the inner array without notifying.
Exam tip
signal(0) + update. No silent mutate.