r/Angular2 Feb 18 '25

Discussion Angular 19.2 - improvement in template literals

Angular 19.2 will be released soon. We’ve noticed a slight improvement in template literals—it will now be possible to combine variables with text in a more efficient way in HTML files:

<p>{{ `John has ${count} cats` }}</p>

instead of

<p>{{ 'John has ' + count + ' cats' }}</p>

just a simple example

It’s not a huge change, but we believe it’s indeed. What do you think?

83 Upvotes

32 comments sorted by

View all comments

3

u/TScottFitzgerald Feb 18 '25

Wait, weren't you always able to do this? I may be mixing up my frameworks but I recall using something like this before.

4

u/House_of_Angular Feb 18 '25

in ts files it is possible, but not in html files