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

11 lines
205 B
JavaScript
Raw Normal View History

const repeatString = function(word, times) {
if (times < 0) return 'ERROR'
let string = ''
for (let i = 0; i < times; i++) {
string += word
}
return string
};
2017-08-21 15:28:29 +00:00
module.exports = repeatString;