I am building an express app that renders a csv and turns it into a json. I have this json as a var in my method and would like to be able to render it as a table in my html page. How can I turn this json object into a html table?
e.g.
parsed json
[{ 'Province/State': 'West Virginia',
'Country/Region': 'US',
'Last Update': '2020-03-19T02:33:09',
Confirmed: '2',
Deaths: '0',
Recovered: '0',
Latitude: '38.4912',
Longitude: '-80.9545' },
{ 'Province/State': 'US',
'Country/Region': 'US',
'Last Update': '2020-03-19T19:13:18',
Confirmed: '1',
Deaths: '0',
Recovered: '108',
Latitude: '37.0902',
Longitude: '-95.7129' } ]
I want to make this into a table in html with a static file.