If I have a Javascript object, parsed from JSON, that’s nested three deep, and I don’t know the key for the middle one, how to I access it and its contents?
The actual d
If you want to iterate over them, do something like
for (var fileID in responseObj[0].files) { var file = responseObj[0].files[fileID]; var filename = file.filename; }