What is the purpose of the async pipe with OnPush change detection?
- A It disables change detection
- B It marks the component for check when the observable emits
- C It converts observables to promises
- D It caches HTTP responses
Answer
It marks the component for check when the observable emits
This combination is why async pipe and OnPush work well together, giving efficient updates without manual markForCheck calls.





