2021-05-09 12:06:18 +00:00
|
|
|
const repeatString = function(word, times) {
|
2022-01-23 20:17:39 +00:00
|
|
|
if (times < 0) return 'ERROR';
|
|
|
|
let string = '';
|
2021-04-30 10:12:52 +00:00
|
|
|
for (let i = 0; i < times; i++) {
|
2022-01-23 20:17:39 +00:00
|
|
|
string += word;
|
2021-04-30 10:12:52 +00:00
|
|
|
}
|
2022-01-23 20:17:39 +00:00
|
|
|
return string;
|
2021-05-10 08:08:31 +00:00
|
|
|
};
|
2017-08-21 15:28:29 +00:00
|
|
|
|
2021-05-10 08:08:31 +00:00
|
|
|
module.exports = repeatString;
|