Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a javascript object which has been JSON parsed using JSON.parse I now want to print the object so I can debug it (something is going wrong with the function). When I do the following...

        for (property in obj) {
      output += property + ': ' + obj[property]+'; ';
    }
    console.log(output);

I get multiple [object Object]'s listed. I'm wondering how would I print this in order to view the contents?

share|improve this question
2  
as a sidenote, for (property in obj) will list all properties, even the inherited ones. So you will get a lot of extraneous one cominng for Object.prototype and any 'mother class'. This is unconvenient with json objects. You have to filter them with hasOwnProperty() to get only the properties that this object owns. – BiAiB Feb 8 '11 at 12:55

3 Answers

up vote 17 down vote accepted

Most debugger consoles support displaying objects directly. Just use

console.log(obj);

Depending on your debugger this most likely will display the object in the console as a collapsed tree. You can open the tree and inspect the object.

share|improve this answer

You know what JSON stands for? JavaScript Object Notation. It makes a pretty good format for objects.

JSON.stringify(obj) will give you back a string representation of the object.

share|improve this answer
8  
wow, that is really called stringify :) – Gourneau May 13 '11 at 0:02

try console.dir instead of console.log

share|improve this answer
Lovely. I didn't know about console.dir – palaniraja Jan 17 at 9:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.