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

ES6字符串的扩展方法 startsWith、endsWith、includes

程序员文章站 2022-03-01 14:53:56
...
const message = 'Error: foo is not defined.'

startsWidth(str,index):判断字符串在起始位置能否检测到指定文本,如果能,返回 true,否则,false

console.log(message.startsWith('Error'))   //true

endsWidth(str,index):判断字符串在结束位置能否检测到指定文本,如果能,返回 true,否则,false

console.log(message.endsWith('.'))   //true

includes(str,index):如果在字符串中能检测到指定文本,返回 true,否则,false

console.log(message.includes('foo'))   //true
相关标签: javascript es6 js