Why is this formatted string template
var test = `Today is $ {
now
}.`;
faster than just a regular string template on 1 line like
var test = `Today is ${now}.`;
You can see the benchmark in the JsPerf test linked below.
Also why does Firefox perform way better than Chrome on this benchmark?