ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
### String ``` ``` ### 模版字符串 ``` <script> //模板字符串就是一种字符串的新的表现形式 //a、基本用法 var s1 = ` hello ` var s2 = ' hello ' //b、模板字符串解决了一些痛点 //+字符串和变量拼接 var s3 =" a " + s1 + " b " + s2; var s4 = ` a ${s1} b ${s2}`; //减少了错误几率 //+字符串换行 var s5 =`<div> <p> <span>123</span> </p> <p>${s2}</p> <p>${s3}</p> <p>${s1}</p> </div>`; console.log(s5); </script> ```