Skip to content

Latest commit

 

History

History
64 lines (52 loc) · 2.08 KB

File metadata and controls

64 lines (52 loc) · 2.08 KB
title ms.custom ms.date ms.prod ms.reviewer ms.suite ms.technology ms.tgt_pltfrm ms.topic f1_keywords dev_langs helpviewer_keywords ms.assetid caps.latest.revision author ms.author manager
Debug.write Function (JavaScript) | Microsoft Docs
01/18/2017
windows-client-threshold
devlang-javascript
language-reference
Write
JavaScript
TypeScript
DHTML
write method [JavaScript]
fd1cfbb3-46cb-47cc-896c-a70d457dd413
22
mikejo5000
mikejo
ghogen

Debug.write Function (JavaScript)

Sends strings to the script debugger.

Syntax

  
Debug.write([str1 [, str2 [, ... [, strN]]]])  

Parameters

str1, str2, ... , strN
Optional. Strings to send to the script debugger.

Remarks

The Debug.write function sends strings to the Immediate window of a script debugger at run time. If the script is not being debugged, the Debug.write function has no effect.

The Debug.write function is almost identical to the Debug.writeln function. The only difference is that the Debug.writeln function sends a newline character after the strings are sent.

Example

This example uses the Debug.write function to display the value of the variable in the Immediate window of the script debugger.

Note

To run this example, you must have a script debugger installed and the script must run in debug mode.

Internet Explorer 8 includes the [!INCLUDEjavascript] debugger. If you are using an earlier version of Internet Explorer, see How to: Enable and Start Script Debugging from Internet Explorer.

var counter = 42;  
Debug.write("The value of counter is " + counter);  

Requirements

[!INCLUDEjsv3]

Applies To: Debug Object

See Also

Debug.writeln Function