HTML DOM write() Method (original) (raw)
Last Updated : 16 Jun, 2023
The write() method in HTML is used to write some content or JavaScript code in a Document. This method is mostly used for testing purposes. It is used to delete all the content from the HTML document and inserts the new content. It is also used to give additional text to an output that is opened by the document.open() method. This method is quite similar to writeln() method.
Syntax:
document.write( exp1, exp2, exp3, ... )
Parameters: This method contains many parameters which are optional. All the expression arguments (exp1, exp2, ... ) can be listed and displayed in the order of occurrence.
Example 1: This simple example shows the use of document.write() method.
HTML `
DOM write() MethodGeeksforGeeks
DOM write() Method
`
Output:
Example 2: This is another example that shows the use of the document.write() method.
html `
DOM write() MethodGeeksforGeeks
DOM write() Method
Submit`
Output:

Supported Browsers: The browser supported by the DOM write() method are listed below:
- Chrome 1
- Edge 12
- Internet Explorer 4
- Firefox 1
- Opera 3
- Safari 1