I have an object with deeply nested properties.
Here is the result of console.log(myObject) in Chrome.

But the result of console.log(myObject.schedules) is {}.
When I JSON.stringify the original object the result is {"schedules":{}}, which I find really confusing. As you see above, its logging a lot more than just that.
Any idea what the problem is?
JSON.stringify, to see the whole object as it was at time of logging)