I have this object:
var body = {
"LocationInfo": {
"Stores": [
{
"Number": 524,
"Name": "Store"
}
]
}
};
But I can't read anything inside the object, for example:
console.log(body["LocationInfo"]["Stores"][0]);
is undefined
This is so basic... I'm not sure what's wrong.