How do you handle memory leaks in Angular
pplications?
- Unsubscribe from Observables using:
- takeUntil with a destroy notifier.
- async pipe which auto-unsubscribes.
- Remove event listeners added manually.
- Avoid retaining references to DOM or large objects.
- Use tools like Chrome DevTools and Angular Profiler.