In the angular tutorial there is this example:
<h3>
<a [title]="product.name + ' details'">
{{ product.name }}
</a>
</h3>
it works great if I am writing it like this:
<h3>
<a title="{{product.name + ' details'}}">
{{ product.name }}
</a>
</h3>
what is the difference? and what is the best practice?