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

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

程序员文章站 2022-03-08 20:49:40
...

ES6字符串扩展方法

  • startsWith:判断字符串开头是否包含某个字符
  • endsWith:判断字符串结尾是否包含某个字符
  • includes:判断字符串中是否包含某个字符
const message = 'Error: foo is not defined';
console.log(message.startsWith('Error')); // true
console.log(message.endsWith('defined')); // true
console.log(message.includes('not')); // true