angular data bindings - further look
There are 3 different types of bindings in Angular
a) Source to View bindings
The following syntax are valid
{{expression}}
[target]="expression"
bind-target="expression"
b) View to source binginds
The following syntax are valid
(target)="statement"
on-target="statement"
c) Two way bindings
The following syntax are valid
[(target)]="expression"
bindon-target="expression"
Comments