JSFiddle - React, Tailwind, and code Playground

by Damith Nuwan Sampath

HTML

<table id="records_table"></table>

JavaScript

var response = [{
      "rank":"9",
      "content":"Alon",
      "UID":"5"
     },
     {
       "rank":"6",
       "content":"Tala",
       "UID":"6"
    }];

$.each(response, function(i, item) {
    $('<tr>').html(
        "<td>" + response[i].rank + "</td><td>" + response[i].content + "</td><td>" + response[i].UID + "</td>").appendTo('#records_table');
});