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

13 lines
188 B
JavaScript
Raw Normal View History

2023-11-04 11:05:11 +00:00
const repeatString = function(string, num) {
if (num < 0){
return 'ERROR';
} else {
return string.repeat(num);
}
};
2017-08-21 15:28:29 +00:00
2023-11-04 11:05:11 +00:00
repeatString('hey', 3);
module.exports = repeatString;
2023-11-04 11:05:11 +00:00