📜  美元符号括号javascript代码示例

📅  最后修改于: 2022-03-11 15:01:11.332000             🧑  作者: Mango

代码示例1
//Multiline strings:
console.log(`foo
bar`);
// foo
// bar
//String interpolation:
var foo = 'bar';
console.log(`Let's meet at the ${foo}`);
// Let's meet at the bar