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

ES6新增的字符串方法

程序员文章站 2022-03-08 22:50:04
...

startsWith方法和endsWith方法

用于检查某段字符串是否以xx开头或结束

let str = 'Hello ECMAScript 2015';
let r1 = str.startsWith('Hello');  //true ,检查是否以hello开头
console.log(r1);
let r2 = str.endsWith('2016');  //false,因为不是以2016结尾的
console.log(r2)

repeat(num)让某段字符串重复num遍

console.log('a'.repeat(5)) //aaaaa