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

11 lines
209 B
JavaScript

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