Добрый день, как сделать так, чтобы функция выполнялась снова после ее завершения ?
function createFruit() {
for(let i = 0; i < fruit.length; i++) {
const randomFruit = Math.floor(Math.random() * fruit.length);
const newFruit = document.createElement('div');
const imageFruit = document.createElement('img');
newFruit.id = fruit[randomFruit].id;
newFruit.className = 'fruit';
imageFruit.src = fruit[randomFruit].src;
container.appendChild(newFruit);
newFruit.appendChild(imageFruit);
newFruit.addEventListener("animationend", function() {container.removeChild(newFruit);}, false);
}
}