Angular - Directives
Given the component variables:
What styles will be applied by this template?
textColor = 'purple';
isItalic = true;
What styles will be applied by this template?
<div [ngStyle]="{'color': textColor, 'font-style': isItalic ? 'italic' : 'normal'}">Sample</div>