I cannot seem to find a clear enough answer on this topic, so I am asking the question:
In C#, I can do the following, for instance:
var text = "blah blah";
var strTest = String.Format("This is a {0}", text); //output: 'This is a blah blah'
How would I achieve this in Typescript?
Usage:
I am loading a URL from the environment.ts file, and this string URL will need to contain the placeholders, and in my service layer, replace the placeholders with the actual parameters that needs to be passed in.