欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2022-03-01 14:53:50
...

includes()是判断字符串中是否包含某一个字符,返回的是true 和 false 。

const msg = 'Hi, my name is lily'
console.log(msg.includes(name)) // true

startWidth()是判断字符串当中起始位置是否包含某一个字符,返回的是true 和 false

const msg = 'Hi, my name is lily'
console.log(msg.startWidth(Hi)) // true

endWidth()是判断字符串当中起始位置是否包含某一个字符,返回的是true 和 false

const msg = 'Hi, my name is lily'
console.log(msg.endWidth(lily)) // true

 

相关标签: es2015 js es6/es7