odin-javascript-exercises/02_repeatString/repeatString.js

17 lines
274 B
JavaScript
Raw Permalink Normal View History

2023-06-19 22:18:34 +00:00
const repeatString = function (string, times) {
if (times < 0) {
return 'ERROR'
}
2023-06-19 22:18:34 +00:00
let result = ''
for (let i = 0; i < times; i++) {
result += string
}
return result
};
2017-08-21 15:28:29 +00:00
// Do not edit below this line
module.exports = repeatString;