字符串的扩展方法 includes()、startsWidth(
2021-11-30 本文已影响0人
SY
includes()是判断字符串中是否包含某一个字符,返回的是true 和 false 。
const msg = 'Hi, my name is lily'
console.log(msg.includes(name)) // true
startsWidth()是判断字符串当中起始位置是否包含某一个字符,返回的是true 和 false
const msg = 'Hi, my name is lily'
console.log(msg.startsWidth(Hi)) // true
endsWidth()是判断字符串当中起始位置是否包含某一个字符,返回的是true 和 false
const msg = 'Hi, my name is lily'
console.log(msg.endsWidth(lily)) // true