// .startsWidth() //開頭開始,第二個參數爲所在位置javascript
// .endsWidth() //結尾開始, 第二個參數爲所在位置java
// .includes()3d
// .repeat()blog
示例:ip
const id = '51030019800730366' const fan = 'I Love WangRong'
id.startsWidth('51') //true id.startsWidth('1980',6) //true
id.endsWidth('x') //true fan.endsWidth('Love',6) // true Love最後一個字母所在的位置
fan.includes('WangRong') //true
fan.includes('WangRong',10) //false
//Es5寫法 fan.indexOf('WangRong') !== -1 //true
const heading = `${'='.repeat(5)}${fan}${'='.repeat(5)}`
可實現對齊方式:字符串
例如:class