JSFiddle - React, Tailwind, and code Playground

by Arif Hasan

JavaScript

var titles = ["Name", "Group Link", "Request Date", "Question 1", "Question 2", "Question 3"];
var datas = ["Max", "y.com", "16", "Yes", "No", "Yes", "Max", "y.com", "16", "Yes", "No", "Yes"];
$(document).ready(function() {
  var html = '<table class="table table-striped">';
  html += '<tr>';
  $.each(titles, function(index, value) {
   console.log(value)
    html += '<th>' + value + '</th>';
  });
  html += '</tr>';
  $.each(datas, function(index, value) {
   console.log(value)
    html += '<th>' + value + '</th>';
  });
  html += '</table>';
  $('body').html(html);
});