We've used the console.log method to display messages in the Console panel of the Developer Console.  The console.dir method displays the properties for a specific object. The JavaScript language uses this information to access and manipulate objects. This method is also useful when debugging an application. 

This example shows how to view the “properties” and “methods” associated with the Document object such as BaseURI.

 

Console API reference

 

console.dir(object)

Log level: Info

Prints a JSON representation of the specified object.

 

console.dir(document.head);

 


Figure 4. The result of the console.dir() example above.