Videos https://www.youtube.com/user/ngconfvideos
*ngIf
and *ngFor
syntax
<div *ngIf="userList | async as users; else loading">
<user-profile *ngFor="let user of users; count as count; index as i" [user]="user">
User {{i}} of {{count}}
</user-profile>
</div>
<ng-template #loading>Loading...</ng-template>
ng eject
Officially supported language internally at Google
http://angularjs.blogspot.com/2017/04/official-languages-at-google.htmlLong Term Support (LTS), beginning with v4