在 Javascript 中重复字符串
在 Javascript 中,多次重复字符串是一项常见任务。要实现此目的,您可以使用各种方法。
一种常见的方法是使用循环将字符串重复连接到自身。然而,这种方法对于大字符串重复来说效率不高。
更有效的方法是在 String 原型上使用 Repeat() 方法。此方法接受一个表示字符串应重复次数的整数并返回重复的字符串。例如:
const str = "Hello"; const repeatedStr = str.repeat(3); // Output: "HelloHelloHello"
repeat() 方法被添加到 ECMAScript 6 (ES6) 中的 String 原型中。如果您使用旧版本的 Javascript,则可以使用 polyfill 来实现该方法。下面是一个 polyfill 的例子:
if (!String.prototype.repeat) { String.prototype.repeat = function(count) { if (count < 0) { throw new RangeError("repeat count cannot be negative"); } if (count === Infinity) { throw new RangeError("repeat count cannot be Infinity"); } let result = ""; for (let i = 0; i < count; i++) { result += this; } return result; }; }
以上是如何在 JavaScript 中有效地重复一个字符串多次?的详细内容。更多信息请关注PHP中文网其他相关文章!