最佳答案
在 ES6中使用字符串串联或模板文字时,HTML 代码生成在现代浏览器中运行的速度是否快得多?
例如:
字符串连接
"<body>"+
"<article>"+
"<time datetime='" + date.toISOString() +"'>"+ date +"</time>"+
"</article>"+
"</body>"
字面上的模板
`<body>
<article>
<time datetime='${ date.toISOString() }'>${ date }</time>
</article>
</body>`