ES6字符串模板
Posted sunyang-001
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6字符串模板相关的知识,希望对你有一定的参考价值。
(1)字符串模板
let foo=‘string‘
let bar =`这是一个字符串${foo}`
conso.log(bar) //这是一个字符串string
(2)字符串查找
includes方法==>bar中是否含有foo这个字符串,有则返回true,没有则返回false
console.log(bar.includes(foo)) //ture
startswith方法==>bar是否以foo这个字符串开头,有则返回true,没有则返回false
console.log(bar.startsWith(foo)) //false
endsWith方法==>ar是否以foo这个字符串结尾,有则返回true,没有则返回false
console.log(bar.endsWith(foo)) //true
(3)复制字符串
repeat方法==>将某个字符串复制多少个 .repeat(复制的个数)
let foo=‘string‘
console.log(bar.repeat(5)) //stringstringstringstringstring
以上是关于ES6字符串模板的主要内容,如果未能解决你的问题,请参考以下文章