In ruby, you can do foo.inspect() and it outputs something sane for any object pretty much regardless of type.

How do I achieve the same thing in Javascript?

link|improve this question

What's wrong with console.log(foo)? – Matt Ball Oct 9 '10 at 21:10
feedback

2 Answers

up vote 3 down vote accepted

This is possibly not the entirely general answer you're hoping for, since this introduces third-party dependencies into you application. However, they're worth mentioning:

  • For applications using Prototype (link) you can use Object.inspect (link)
  • For applications using jQuery (link) there's the jquery-inspect (link) plugin
link|improve this answer
feedback

Take a look at this:

http://jsclass.jcoglan.com/reflection.html

Did that help?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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