juniorAngular
What is Angular Change Detection?
Updated Apr 28, 2026
Short answer
Change detection updates UI when data changes.
Deep explanation
Angular tracks changes and updates DOM automatically. Default strategy checks entire component tree.
Real-world example
Updating UI after API response.
Common mistakes
- Triggering unnecessary cycles.
Follow-up questions
- What is OnPush?
- Why optimize?