Which error commonly appears when a bound value is modified inside ngAfterViewInit in development mode?
- A NullInjectorError
- B ExpressionChangedAfterItHasBeenCheckedError
- C CircularDependencyError
- D TemplateParseError
Answer
ExpressionChangedAfterItHasBeenCheckedError
Angular runs a verification pass in development mode. Changing a bound value after the view has been checked signals a design problem in the update flow.





