...
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