Skip to content

模板字符串

模板字符串(template string)是一种字符串的语法,它允许嵌入变量、表达式和函数调用。

javascript
const name = "John";
console.log(`Hello, ${name}!`);