What is the main advantage of reactive forms over template-driven forms?
- A They require less code
- B The form model is explicit, synchronously available and unit-testable without a DOM
- C They render faster
- D They do not require validation
Answer
The form model is explicit, synchronously available and unit-testable without a DOM
Reactive forms also make dynamic controls, custom validators and valueChanges-driven logic far more straightforward.





