Files
odin-javascript-exercises/repeatString/repeatString.js
T

11 lines
201 B
JavaScript
Raw Normal View History

2017-12-15 12:56:14 -06: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 10:28:29 -05:00
}
module.exports = repeatString