欢迎来到博客园~~~

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

posted @ 2019-05-09 19:30  孙~洋  阅读(579)  评论(0编辑  收藏  举报