| Modifier and Type | Method and Description | 
|---|---|
| void | dir(Object object)Displays an interactive list of the properties of the specified JavaScript object. | 
| void | dirxml(Object object)Displays an interactive tree of the descendant elements of the specified XML/HTML element. | 
| void | log(Object... objects)Outputs a message to the Web Console. | 
void log(Object... objects)
objects - a list of JavaScript objects to output. The string representations of each of these objects are appended
            together in the order listed and output.void dir(Object object)
object - a JavaScript object whose properties should be output.void dirxml(Object object)
object - a JavaScript object whose properties should be output.