Given this?
var v = 10;
var template = "testing ${v}...";
How do I achieve the same result as the following template string.
var result = `testing ${v}...`;
The template string is stored in a variable, and not a literal template string.
Is there a method to apply a template string when the template string is stored in a variable, and not literal?