C# uses string interpolation

int value = 100;
Console.WriteLine($"The size is {value}.");

Output:

The size is 100.

How to do the same thing in TypeScript?

2 Answers
2

Leave a Reply

Your email address will not be published. Required fields are marked *