What is an Angular signal?
- A A DOM event wrapper
- B A reactive value wrapper that tracks its readers and notifies them on change
- C A routing mechanism
- D A form validator
Answer
A reactive value wrapper that tracks its readers and notifies them on change
Signals enable fine-grained updates without subscriptions, and are the foundation of Angular's move towards zoneless change detection.





