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