Defer execution for ES6 Template Literals
I can see three ways around this: Use template strings like they were designed to be used, without any format function: console.log(`Hello, ${“world”}. This is a ${“test”}`); // might make more sense with variables: var p0 = “world”, p1 = “test”; console.log(`Hello, ${p0}. This is a ${p1}`); or even function parameters for actual deferral of … Read more