HTML
Interpolation
<div> {{title}} </div>
<div> {{title | uppercase }} </div>Two way binding
import { FormsModule } from '@angular/forms';<label>name:
<input [(ngModel)]="hero.name" placeholder="name">
</label>Loops
<ul class="heroes">
<li *ngFor="let hero of heroes">
{{hero.id}}
</li>
</ul>Event Binding
If
Conditional Classes
Property Binding(used with @Input )
Last updated