八. 字符串模板函數

// .startsWidth()  //開頭開始,第二個參數爲所在位置javascript

// .endsWidth()  //結尾開始, 第二個參數爲所在位置java

// .includes()3d

// .repeat()blog

 

  示例:ip

  

const id = '51030019800730366'

const fan = 'I Love WangRong'

1. startsWidth()

id.startsWidth('51')            //true
id.startsWidth('1980',6)      //true

  

2.endsWidth()

id.endsWidth('x')            //true
fan.endsWidth('Love',6)    // true    Love最後一個字母所在的位置

  

3.includes()  字符串中是否包含某個字符

fan.includes('WangRong')    //true
fan.includes('WangRong',10)    //false
//Es5寫法 fan.indexOf('WangRong') !== -1 //true

  

4.repeat()  //重複次數,能夠美化字符串

const heading = `${'='.repeat(5)}${fan}${'='.repeat(5)}`

 

 

可實現對齊方式:字符串

例如:class

  

相關文章
相關標籤/搜索