JSFiddle - React, Tailwind, and code Playground
HTML
<h2>
result
</h2>
<ul id="result">
</ul>
CSS
body {
color: #333;
}
JavaScript
const obj = {a: 1, b: 33, c: 4, d: 33, e: 17, f: 8, g: 9, h: 'foo'};
for (const i in obj) {
document.querySelector('#result').innerHTML += '<li>' + obj[i] + '</li>';
}