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?
In JavaScript you can use template literals:
let value = 100;
console.log(`The size is ${ value }`);