String.prototype.repeat()

repeat()String 值的一种方法,用于构造并返回一个新的字符串,该字符串包含指定数量的此字符串的副本,连接在一起。

试试看

语法

js
repeat(count)

参数

count

一个介于 0+Infinity 之间的整数,表示要重复字符串的次数。

返回值

一个新字符串,包含指定数量的给定字符串的副本。

异常

RangeError

如果 count 为负数或 count 超出最大字符串长度,则抛出此异常。

示例

使用 repeat()

js
"abc".repeat(-1); // RangeError
"abc".repeat(0); // ''
"abc".repeat(1); // 'abc'
"abc".repeat(2); // 'abcabc'
"abc".repeat(3.5); // 'abcabcabc' (count will be converted to integer)
"abc".repeat(1 / 0); // RangeError

({ toString: () => "abc", repeat: String.prototype.repeat }).repeat(2);
// 'abcabc' (repeat() is a generic method)

规范

规范
ECMAScript 语言规范
# sec-string.prototype.repeat

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。

另请参阅