odin-js-fundamentals-part-4/02_repeatString/repeatString.js

14 lines
274 B
JavaScript
Raw Normal View History

2024-01-05 19:43:30 +00:00
const repeatString = function(string, times) {
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;
};
// Do not edit below this line
module.exports = repeatString;