- 就是这种形式${varible}, 在以往的时候我们在连接字符串和变量的时候需要使用这种方式'string' + varible + 'string'但是有了模版语言后我们可以使用string${varible}string 这种进行连接。基本用途有如下:
1、基本的字符串格式化,将表达式嵌入字符串中进行拼接,用${}来界定。
//es5 var name = "lux"; console.log("hello" + name); //es6 const name = "lux"; console.log(`hello ${name}`); //hello lux
2、在 ES5 时我们通过反斜杠()来做多行字符串或者字符串一行行拼接,ES6 反引号(``)直接搞定。
//ES5 var template = "hello \ world"; console.log(template); //hello world //ES6 const template = `hello world`; console.log(template); //hello 空行 world