JSFiddle - React, Tailwind, and code Playground

by WoJWoJ

JavaScript

var resp = '{"aaa": 10, "bbb": 20, "ccc": 30};'
var jresp = JSON.parse(resp);
tableCreate(jresp);

function tableCreate(resp) {
    for (var key in resp) {
        console.log(key);
    }
}