Problem Statement
How do valueChanges and statusChanges help reactive forms logic?
Explanation
Both are observables: valueChanges emits when control values change; statusChanges emits when validation status updates. Combine with operators (debounceTime, distinctUntilChanged) to implement live validation, search, or autosave.