I want to display an array of objects in a dynamic table using javascript.
var rows=[{ name : "John", age:20, email: "[email protected]"},
    { name : "Jack", age:50, email: "[email protected]"},
    { name : "Son", age:45, email: "[email protected]"}
........................etc
   ];
This is how it looks.I want to know how can I show this as a dynamic table.
This is how you do it:
Javascript Solution:
FIDDLE:
var rows = [{
    name: "John",
    age: 20,
    email: "[email protected]"
}, {
    name: "Jack",
    age: 50,
    email: "[email protected]"
}, {
    name: "Son",
    age: 45,
    email: "[email protected]"
}];
var html = "<table border='1|1'>";
for (var i = 0; i < rows.length; i++) {
    html+="<tr>";
    html+="<td>"+rows[i].name+"</td>";
    html+="<td>"+rows[i].age+"</td>";
    html+="<td>"+rows[i].email+"</td>";
    
    html+="</tr>";
}
html+="</table>";
document.getElementById("box").innerHTML = html;
jQuery Solution:
FIDDLE
var rows = [{
        name: "John",
        age: 20,
        email: "[email protected]"
    }, {
        name: "Jack",
        age: 50,
        email: "[email protected]"
    }, {
        name: "Son",
        age: 45,
        email: "[email protected]"
    }];
$(document).ready(function () {
    var html = "<table border='1|1'>";
    for (var i = 0; i < rows.length; i++) {
        html+="<tr>";
        html+="<td>"+rows[i].name+"</td>";
        html+="<td>"+rows[i].age+"</td>";
        html+="<td>"+rows[i].email+"</td>";
        
        html+="</tr>";
    }
    html+="</table>";
    $("div").html(html);
});
jQuery Solution 2:
FIDDLE
var rows = [{
  name: "John",
  age: 20,
  email: "[email protected]"
}, {
  name: "Jack",
  age: 50,
  email: "[email protected]"
}, {
  name: "Son",
  age: 45,
  email: "[email protected]"
}];
const Array2Table = (arr) => {
  let Table = [];
  let top_row = [];
  let rows = [];
  for (let i = 0; i < arr.length; i++) {
    let cells = [];
    for (let property in arr[i]) {
      if (top_row.length < Object.keys(arr[i]).length) {
        top_row.push(`<th scope="col">${property}</th>`);
      }
      if (arr[i][property] === null) {
        cells.push(`<td>${null}</td>`);
      } else {
        cells.push(`<td>${arr[i][property]}</td>`);
      }
    }
    rows.push(`<tr>${cells.join("")}</tr>`);
  }
  Table.push(`<table class="table card-table table-striped">`);
  Table.push(`<thead>${top_row.join("")}</thead>`);
  Table.push(`<tbody>${rows.join("")}<tbody>`);
  Table.push("</table>");
  return Table.join("");
}
$(function() {
  let html = Array2Table(rows);
  $("div").html(html);
});
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With