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
网友评论