I have sent some data to my server, and I want to be able to pull the data from the object to use for my server. An example of what the data structure is down below:
[
[
{
path: 'path/image',
preview: 'blob:imagepreview'
}
]
]
I wouldn't be able to use dot notation. nor a single bracket notation would work.
Edit:
A double bracket notation like array[0][0]
worked for me. I was able to pull out the information and access it like normal.