ES6 新增字符串方法

//字符串新增方法:

方法                   返回值               作用

includes('str')     boolean             判断字符串中包含子串

endWith('str')     boolean             判断字符串以"str"结尾 

startWith('str')     boolean            判断字符串以"str"开头

repeat(n)          重复拼接自身      重复n次输出字符串 repeat+repeat

//不全方法: 补全字符串长度

1.padStart(targetLength [, padString]);       字符串开头补全

targetLength

当前字符串需要填充到的目标长度。如果这个数值小于当前字符串的长度,则返回当前字符串本身。

padString 可选

填充字符串。如果字符串太长,使填充后的字符串长度超过了目标长度,则只保留最左侧的部分,其他部分会被截断。此参数的缺省值为 " "

2.padEnd(targetLength [, padString]);         字符串末尾补全

targetLength,

当前字符串需要填充到的目标长度。如果这个数值小于当前字符串的长度,则返回当前字符串本身。

你可能感兴趣的:(ES6 新增字符串方法)