外观
模板字符串 引入新的声明字符串的方式
let str = `hello world` console.log(str, typeof str)
\n
${变量名}
${表达式}
${函数名()}
${对象名}
${数组名}
${/正则表达式/}
${/* 注释 */}
${\n}