JSFiddle - React, Tailwind, and code Playground
HTML
<div id="console"></div>
JavaScript
var h = {};
h["a"] = 1;
h["b"] = 2;
h["1"] = 3;
for(n in h){
$("<div>").text(n + "="+h[n]).appendTo("#console");
}
<div id="console"></div>
var h = {};
h["a"] = 1;
h["b"] = 2;
h["1"] = 3;
for(n in h){
$("<div>").text(n + "="+h[n]).appendTo("#console");
}