화법과 작문

불러오는 중...
async function loadImages() { const imageList = document.getElementById("image-list"); try { const response = await fetch("./images.json"); if (!response.ok) { throw new Error("images.json을 불러오지 못했어요ㅠㅠ."); } const images = await response.json(); if (!Array.isArray(images) || images.length === 0) { imageList.in