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

11 lines
201 B
JavaScript
Raw Normal View History

2017-12-15 18:56:14 +00:00
var 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