用反引号来包裹字符串,支持差值表达式${}来表达变量

const name='lee'
const string = `hello ${name}`
console.log(string)//hello lee

reference