其他分享
首页 > 其他分享> > es6 加强版字符串

es6 加强版字符串

作者:互联网

和喜欢的女生聊天,就别提自己和另一个女生关系很好。可能会让人家以为你和别人搞暧昧。即便自以为清白。

//模板字符串相当于加强版的字符串,用反引号 `,除了作为普通字符串,还可以用来定义多行字//符串,还可以在字符串中加入变量和表达式。
// ES6 引入新的声明字符串的方式 『``』 '' ""
//1. 声明
let str = `我也是一个字符串哦!`
console.log(str, typeof str)

//2. 内容中可以直接出现换行符
let list = `<ul>
            <li>沈腾</li>
            <li>玛丽</li>
            <li>魏翔</li>
            <li>艾伦</li>
            </ul>`
console.log(list)

//3. 变量拼接
let lovest = '贾玲'
let out = `我喜欢${lovest}`
console.log(out)

标签:es6,console,加强版,let,str,字符串,out,log
来源: https://blog.csdn.net/qq_41472891/article/details/121960285