I have some Angular2 code:
and
Note:
They are both properties bindings
Interpolation
is just sugar for
So the difference between those expressions is that the value in the interpolation src="{{value}}"
is always stringified while the value of basic property binding [src]="value"
is passed as is.
See also