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

10 lines
182 B
JavaScript

const repeatString = (string, num) => {
if (num < 0) {
return "ERROR";
}
return string.repeat(num);
};
// Do not edit below this line
module.exports = repeatString;