미니멀라이프로의 초대, 정리와 함께하는 새롭고 깨끗한 살림
`; } function renderTable(data) { const table = document.getElementById(‘customers’); table.innerHTML = ` ${Object.keys(data[0]).map(key => ` ${capitalizeFirstLetter(key)} `).join(”)} `; data.forEach((customer, index) => { table.innerHTML += ` `; }); // Append new rows with customer details data.forEach((customer, index) => { const row = table.querySelector(`[data-index=”${index}”]`); Object.values(customer).forEach(value => { row.innerHTML += ` ${typeof value === ‘object’ ? JSON.stringify(value) : … Read more