g?
Size: a a a
g?
И
И
ОГ
g?
g?
T
ОГ
g?
g?
ЦЗ
М
T
let text = prompt('Введите текст');
let repeats = Number(prompt('Введите кол-во повторений'));
let j = '';
function repeat(count) {
if (count < 0) {
console.log('RangeError');
} else if (count == 0) {
console.log('');
} else if (count > 0) {
for (let i = 1; i <= count; i++) {
j += text
}
console.log(j);
}
}
repeat(repeats);
K
A
☬
☬
☬
A