filter方法
1.filter过滤返回结果为true的内容
let arr = [{
shop: '赵信',
age: '22'
}, {
shop: '小李',
age: '21'
}]
let result=arr.filter(data=>data.age>21)
console.log(result);// [shop: '赵信',age: '22']
startsWith方法
1.startsWith 表示字符串是否已某个字符开头,返回布尔值
let str = 'http://www.baidu.com'
var a=str.startsWith('h')
console.log(a);//true
endsWith方法
1.endsWith 表示字符串是否已某个字符结尾,返回布尔值
let str = 'http://www.baidu.com'
var b=str.endsWith('m')
console.log(b);//true
repeat方法
1.repeatc字符串重复n次,返回新的字符串
console.log('哈'.repeat(6));//哈哈哈哈哈哈
padStart方法
1.padStart给出指定宽度,不够就空格或者指定的字符在前面补齐
console.log('abc'.padStart(8,'*'));//*****abc
padEnd方法
1.padEnd给出指定宽度,不够就空格或者指定的字符在后面补齐
console.log('abc'.padEnd(8,'*'));//abc*****