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