Thinking in Angular 4: Templates
To understand Angular 4, after the “Hero” tutorial you should start from the Template syntax. We highlighted some statement in red below: Data direction Syntax Type One-way from data source to view target {{expression}} [target]="expression" bind-target="expression" Interpolation Property Attribute Class Style One-way from view target to data source (target)="statement" on-target="statement" Event Two-way [(target)]="expression" bindon-target="expression" Two-way …