0 votes
in Angular by

If you add a component class property named name and assign it a string value of The Redemption, how would this show on the template file using an interpolation statement?

1. <h2> {{ name}}</h2>

2. <h2>The Redemption {{}}</h2>

3. <h2> {{ The Redemption}}</h2>

4. <h2>The Redemption {{ name}}</h2>

1 Answer

0 votes
by
Correct answer is :- <h2> {{ name}}</h2>
...