const id = '422201199201031254x';
const flag = 'I love code';
是否已某个字符开头,如果有第二个参数,表示从第几个字符开始,这个方法大小写敏感
id.startsWith('4'); // true
id.startsWith('1993', 6'); // true
是否已某个字符结尾,如果有第二个参数,表示从第几个字符开始,这个方法大小写敏感
id.endsWith('x'); // true
是否包含某个字符,如果有第二个参数,表示从第几个字符开始,这个方法大小写敏感
flag.includes('code'); // true
flag.includes('code',3); // true
重复某个字符 '哈'.repeat(3); // 哈哈哈
//右对齐
function padder(string, length = 25) {
return `${' '.repeat(length - string.length)}${string}`;
}