前端小白随手笔记
程序员文章站
2022-06-06 19:55:53
...
前端小白的入门笔记
关于ES6的问题
1.模板字符串
模板字符串是用反双引号来标识的**()**,可以用来当作普通字符串来使用,也可以用来嵌套变量和其他模板字符串,模板字符串里面的空格和换行是会一样显示在页面上的,下面是使用方法。
let str=`helloword`
let str2=`helloword 123`
let str3=`abc${5+5} +123`
const num1= 123
const num2 = 456
const result = `${num1*num2+str2}`
console.log(str)//helloword
console.log(str2)//helloword 123
console.log(str3)//abc10
console.log(result)//56088helloword 123
上一篇: Elasticsearch学习整理
下一篇: 关于session会话的有关问题 php