Repeats a string a specified number of times.
The string to repeat.
The number of times to repeat the string (must be non-negative).
The string repeated the specified number of times.
console.log(repeatString("hi", 3)); // "hihihi"console.log(repeatString("a", 2)); // "aa"console.log(repeatString("test", 0)); // ""console.log(repeatString("", 5)); // "" Copy
console.log(repeatString("hi", 3)); // "hihihi"console.log(repeatString("a", 2)); // "aa"console.log(repeatString("test", 0)); // ""console.log(repeatString("", 5)); // ""
Repeats a string a specified number of times.