AK
Size: a a a
AK
L
D
AK
L
L
L
AK
L
L
AK
T
C
НА
НА
T
let rep = 10; //1 аргумент
let sec = 500; //2 аргумент
let x = 0; //текущяя итерация
function hello(rep, sec, x){
if (x !== rep){
console.log(x+" hello")
x++
setTimeout(() => hello(rep, sec, x),sec)
}
}
hello(rep, sec, x)
AK