Appearance
模板字符串(template string)是一种字符串的语法,它允许嵌入变量、表达式和函数调用。
const name = "John"; console.log(`Hello, ${name}!`);