vote up 1 vote down star

Hi, I would like to see the structure of object in JavaScript (for debugging). Is there anything similar to var_dump in PHP? Thanks

flag

79% accept rate

3 Answers

vote up 2 vote down check

Install Firebug for Firefox and do this:

console.log(myvar);

Then you will get a nicely mapped out interface of the object/whatever in the console.

Check out the console documentation for more details.

link|flag
thanks, i use Firebug but i didn't know about this feature. also thanks for link. – perfectDay Mar 2 at 21:50
vote up 2 vote down

Firebug.

Then, in your javascript:

var blah = {something: 'hi', another: 'noway'};
console.debug("Here is blah: %o", blah);

Now you can look at the console, click on the statement and see what is inside blah

link|flag
vote up 0 vote down

Please check out this post: "jQuery: print_r() display equivalent?"

link|flag

Your Answer

Get an OpenID
or

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