Currently diving into the world of JavaScript and tackling a project head-on. However, I've hit a roadblock as the JSON file I'm working with looks different from what I'm used to. Can anyone assist me in figuring out how to display this data in my HTML file?
{
"values": [
[
“name”,
“age”,
“location”
],
[
“Alice”,
“28”,
“Florida.”
]
]
}
I'm accustomed to working with this format
[name:"Alice",age:"28",location:"Florida"]
[name:"Bob",age:"27",location:"Texas"]
Is there a way to transform it to match that style?
Appreciate any help!