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

7 lines
143 B
JavaScript

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