I want to know about the difference between these two lines.
<p [myHighlight]="'yellow'">Highlighted in yellow</p>
<p myHighlight="orange">Highlighted in orange</p>
myHighlight
is custom directive where all tags inside it will be set custom color.
Thanks.