字符串的扩展方法 includes()、startsWidth()、endsWidth()的方法介绍使用

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

你可能感兴趣的:(字符串的扩展方法 includes()、startsWidth()、endsWidth()的方法介绍使用)