How can I retrieve information from a JavaScript object that has a numeric value as an index?
"element_count": 69,
"near_earth_objects": {
"2016-10-29": [ ... ]
I need to access the data inside that "2016-10-29"
Array.
I have no problem accessing the other elements like this:
$.getJSON(Call, function(data1){
console.log(data1.element_count);
});