<htmllang=de><metacharset=UTF-8><title>Document</title><linkrel="stylesheet"href="https://unpkg.com/@picocss/pico@latest/css/pico.min.css"><bodyclass=container><h1>Array of objects to table</h1><script>letcities=[{"city":"Berlin","country":"Germany"},{"city":"Paris","country":"France"}]document.querySelector('h1').insertAdjacentHTML('afterend',`<table><thead><tr><th>
${Object.keys(cities[0]).join('<th>')}
</thead><tbody><tr><td>${cities.map(e=>Object.values(e).join('<td>')).join('<tr><td>')}</table>`)</script>
Top comments (0)
Subscribe
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Top comments (0)