In JavaScript there is a function document.write() it accepts a string array type parameter that enables the browser to write that string inside the tag of HTML page.

Syntax

document.write(text: string[]);
// or
document.write(text1, text2, text3, …);

Parameters

text: A string array parameter. You can pass more than one text expression as parameters to document.write method. Multiple parameters will be appended to the document body following the order passed to the method.

See the following JavaScript code syntax:

document.write('Hello World!');
document.write('Hello ', 'World', '!');

These both statements will display the string Hello World! on the web page.

You can write the string in " double quotes or ' single quotes and both will be appended to the document body in same way.

Example

document.write('Hello World'); // single quotes
document.write("Hello World"); // double quotes

Notice the semicolon at the end of each statement, this semicolon ; symbol is optional, but you can use it to improve the code readability and separating each statement.

document.write() Examples

Example 1
<script language="javascript" type="text/javascript">
    document.write("<h1>Header</h1>");
    document.write("<p>paragraph lines here</p>");
</script>
Example 2
<script language="javascript" type="text/javascript">
    document.write("<h1>Header</h1>");
    document.write("<p>1st paragraph lines here</p>");
    document.write("<p>2nd paragraph lines here</p>");
</script>

Above JavaScript statements can also be grouped by using curly brackets { }.

Example 3
<script language="javascript" type="text/javascript">
    {
        document.write("<h1>Header</h1>");
        document.write("<p>1st paragraph lines here</p>");
        document.write("<p>2nd paragraph lines here</p>");
    }
</script>

No comments yet.

Leave a Comment

All fields are required. Your email address will not be published.

Recent JavaScript Tutorials

JavaScript if-else Ternary Operator

The JavaScript conditional ternary operator is considered as shorthand for if-else statement that is frequently used to return the result in single code statement. It takes three operands to return ...

JavaScript do…while Loop

do...while loop in JavaScript works like while loop in JavaScript the only difference is that do block executes at least once before while loop’s test condition. That’s why do block ...

JavaScript while Loop

while loop in JavaScript works same like for loop in JavaScript but in a little bit different manner. while loop runs until the condition is true and exits when the ...

JavaScript for Loop

for loop in JavaScript is most often used to execute a block of code with different value each time. So, to reduce the code length instead of adding number of ...

JavaScript switch-case Statement

To execute a single block of code satisfying a condition in case statement of JavaScript switch-case is used. break keyword is used in every case statement to exit the switch ...

Recent Comments