Simply tried this
<strong> {{name}}</strong>
here {{}}
is called string interpolation.
Have a look in angular documentation
This has sample app as well which we surely give you good understanding
Simply tried this
<strong> {{name}}</strong>
here {{}}
is called string interpolation.
Have a look in angular documentation
This has sample app as well which we surely give you good understanding
You can use string interpolation to achieve that…refer this to know more
In your case it would be
<strong> {{ name }} </strong>
I’m new to coding so I have
<strong> ValueFromTypeScript </strong>
in my html
and I want to pull name
from my ts file
name:string = "George";
is this possible?
Yes it is possible, what have you tried. Please share a
The property is called
oh.. thanks @ConnorsFan.. I did typo error corrected now