How to create Dynamic Html Table with Column and row ? Below is the JSON data and I want to create HTML table using this data :
{
"columnNames": [
"Applicant ID(id|Optional)",
"Roll No",
"Applicant Name",
"Password",
"CA ID",
"Shift Name",
"Shift Date",
"Start Time",
"End Time"
],
"rows": [
[
"122",
"18",
"Amit",
"12345",
"42",
"testShift2",
"2019-12-31",
"13:00",
"16:00"
]
]
}