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?
|
In ruby, you can do How do I achieve the same thing in Javascript?
| |||
|
feedback
|
|
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: | ||||
|
feedback
|
|
| |||
|
feedback
|
console.log(foo)? – Matt Ball Oct 9 '10 at 21:10