Is it possible to create a template string as a usual string, let a = "b:${b}"; and then convert it into a template string, let b = 10; console.log(a.template());...
In JavaScript, a backtick†seems to work the same as a single quote. For instance, I can use a backtick to define a string like this: var s =...