标签: javascript
是否可以从普通字符串创建模板文字?例如来自某些JSON中的定义。
var foo = 'world'; var string = "hello ${foo}"; var string2 = `${string}`; // "hello ${foo}" - but I want "hello world"