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

9 lines
193 B
JavaScript

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