码迷,mamicode.com
首页 > 其他好文 > 详细

ES6字符串模板

时间:2019-05-09 20:18:30      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:tar   字符串查找   str   include   多少   lse   end   ons   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字符串模板

标签:tar   字符串查找   str   include   多少   lse   end   ons   es6   

原文地址:https://www.cnblogs.com/sunyang-001/p/10840533.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!