标签: javascript google-chrome firefox ecmascript-6
为什么这是格式化的字符串模板
var test = `Today is $ { now }.`;
比单行常规字符串模板更快,如
var test = `Today is ${now}.`;
您可以在下面链接的 JsPerf 测试中看到基准测试。
为什么 Firefox 在此基准测试中的表现优于 Chrome ?
JsPerf test