Angular - Directives
Consider this Angular template:
But the app crashes with an error:
<div *ngIf="user.isLoggedIn">Hello, {{user.name}}!</div>But the app crashes with an error:
Cannot read property 'isLoggedIn' of undefined. What is the best fix?