首页 > 文章列表 > js中repeat()的使用

js中repeat()的使用

js中repeat()
343 2022-08-06

1、返回一个新字符串,表示将原字符串重复n次。如果参数为小数,则会被取整。

console.log('abc'.repeat(1.6)) //abc

2、如果为负数或者Infinity,会报错。

console.log('abc'.repeat(-1)) // RangeError
console.log('abc'.repeat(Infinity)) // RangeError

3、如果参数是0到-1之间的小数或者NaN,则等同于0。

console.log('abc'.repeat(-0.1)) //
console.log('abc'.repeat(NaN)) //

一般来说,str.repeat(n)重复字符串n遍,括号内填重复的遍数。

推荐操作环境:windows7系统、jquery3.2.1版本,DELL G3电脑。