Hello, I am new to working with JSON and I am curious to know if it is possible to use only JavaScript (without any frameworks) to present all the data from a JSON file in a table format.
Preferably, I would like to load the file locally, but if using a web server to fetch the file is necessary, that is fine too.
[
{
"id": "bitcoin",
"name": "Bitcoin",
"symbol": "BTC",
"rank": "1",
"price_usd": "8088.05",
"price_btc": "1.0",
"24h_volume_usd": "9825660000.0",
"market_cap_usd": "137294244348",
},
{
"id": "siacoin",
"name": "Siacoin",
"symbol": "SC",
"rank": "36",
"price_usd": "0.0144578",
"price_btc": "0.00000178",
"24h_volume_usd": "17730600.0",
"market_cap_usd": "487999542.0",
}
]
The example above showcases the type of data within my file. Any assistance on how to achieve this would be greatly appreciated. Thank you.