2024-01-05 19:43:30 +00:00
|
|
|
const repeatString = function(string, times) {
|
2024-01-05 19:45:32 +00:00
|
|
|
if (times < 0) {
|
|
|
|
return "ERROR";
|
|
|
|
}
|
2024-01-05 19:43:30 +00:00
|
|
|
let output = "";
|
|
|
|
for (let i = 0; i < times; i++) {
|
|
|
|
output += string;
|
|
|
|
}
|
|
|
|
return output;
|
2024-01-05 19:11:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Do not edit below this line
|
|
|
|
module.exports = repeatString;
|