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

17 lines
274 B
JavaScript
Raw Normal View History

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