In instances when a javascript function returns an object, what is a good way of determining what exactly it is that you got?
If I do this:
alert(myFunction(this));
And I get back simply [object Object]
, what are some useful things that I can do to determine what it is?