在es6提供的字符串新方法
1. startsWith():返回布尔值,表示参数字符串是否包含在原字符串的头部
2. endsWith():返回布尔值,表示参数字符串是否包含在原字符串的尾部
3. includes():返回布尔值,表示参数字符串是否包含在原字符串中
这三个方法同事都支持第二个参数,表示开始搜索的位置,但唯一不同的是endsWith和其他两个不同的是n表示前n个字符,而其他表示的是从第n个字符开始。
let s = ‘Hello world!‘;
s.startsWith(‘world‘, 6) // true
s.endsWith(‘Hello‘, 5) // true
s.includes(‘Hello‘, 6) // false
4. repeat(n) 方法是将原字符串重复n遍
let s = ‘hello‘;
s.repeat(3); // "hellohellohello"
参数如果为正小数则为向下取整
let s = ‘hello‘;
s.repeat(3.6); // "hellohellohello"
如果为-1到0之间的小数即为0
let s = ‘hello‘;
s.repeat(-0.5); // " "
如果参数为NaN等同于0
let s = ‘hello‘;
s.repeat(-0.5); // " "