I need a way to bind a variable in a string.
for example in Ts:
name = '{{first}}';
and in HTML if I have :
<input [(ngModel)]="first">
<div> {{name}} <div>
This should return what ever is being typed in the input and not '{{first}}' how can I achieve that ?
I Have a test code at stackblitz