I have reason to believe console.log and JSON.stringify can produce inconsistent views of the same object even if it was created in a straightforward manner (see notes).

Situation

In both Google Chrome developer tools and Firebug, I had an object obj which console.log printed out as { players: {0: ...}, ...}, while JSON.stringify reported { players: {}, ...}. obj.players was {} under both functions, so it seems that console.log is the culprit. Could it be asynchronous/non-deterministic in some way?

Additional notes

I'm afraid I won't be able to provide much more context, since the code is lengthy and for a client, but I can try if there is something that could help get to the bottom this. For the moment, I am forced to stay away from console.log for inspection.

It might be useful to know that the object is formed merely from an object literal by setting properties by hand, e.g., obj.players = {}; obj.players[0] = ....

Code

A sample of what I mean can be observed at http://jsfiddle.net/9dcJP/.

link|improve this question

1  
Why not just console.log(JSON.stringify(obj)); ? – Matt H Jan 4 at 20:51
Without providing the code, you could copy the JSON object and the two calls to a jsfiddle to show it reproduced in the simplest case. – RSG Jan 4 at 20:52
Sorry, console.log(JSON.stringify(obj)) was what I meant by using JSON.stringify. – Peteris Jan 4 at 20:54
JSON.stringify should report with the keys enclosed by quotes, and obj.players.0 is a syntax error. Do you perhaps have a specific testcase available? – pimvdb Jan 4 at 20:58
1  
show 3 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.