作用:可以在字符串中使用变量 var age = 18; console.log(`hello${age}`)var str = 10;var b = "hello";console.log(str+b);var sum = `${str}hello`;console.log(sum);