An intrinsic global object that can send output to a script debugger, such as the Microsoft Script Debugger.
Remarks
Example
This example uses the write method to display the value of the variable in the Immediate window of the Microsoft Script Debugger.
Note |
---|
To run this example, you must have a script debugger installed and the script must run in debug mode. For more information, search MSDN (http://msdn.microsoft.com) for the title "Introducing Microsoft Script Debugger".
|
| Copy Code |
---|
var counter = 42;
Debug.write("The value of counter is " + counter); |
Properties
The Debug object has no properties.
Methods
Requirements
See Also