<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> </body> <script> // 声明字符串的方式`` '' "" // 1声明 let str=`这是个字符串` console.log(str,typeof str); // 2内容中可以直接出现换行符 // 单引号和双引号直接报错了 // let str1='<ul> // <li>沈腾</li> // <li>玛丽</li> // </ul>' let str2=`<ul> <li>沈腾</li> <li>玛丽</li> </ul>` // 3变量拼接 let lovst='魏晨' let out=`${lovst}是最棒的演员` console.log(out) </script> </html>
标签:console,log,let,str,字符串,模板,out From: https://www.cnblogs.com/wmqxlt/p/18630537