const questions = [ /* 위의 JSON 데이터 */ ];
const quizContainer = document.getElementById("quiz-container");
questions.forEach((q, index) => {
const questionElement = document.createElement("div");
questionElement.innerHTML = `
`; }); quizContainer.appendChild(questionElement); });
${q.question}
`; q.options.forEach((option) => { questionElement.innerHTML += ``; }); quizContainer.appendChild(questionElement); });