I'm trying to extract data from an API, but I've run into a snag. There's a list without a name attached to it, making it impossible for me to access the values inside. Here's a simplified example of what I mean:
(Here is the JSON structure)
{
"numberOne": [
{
(other information would be in here)
}
]
}
As you can see, number one contains a nested list with "other information" inside. The issue lies in accessing this data using my current JavaScript method - I can't simply call convertedJson.numberOne.?.otherInformationValue.
Does anyone have any suggestions on how to handle a situation like this?
Thank you!