JavaScript Output

Toggle navigation
TUTORIAL HOME
JavaScript Output
❮ Previous Next ❯
JavaScript Display Possibilities
JavaScript can “display” data in different ways:

Writing into an HTML element, using innerHTML.
Writing into the HTML output using document.write().
Writing into an alert box, using window.alert().
Writing into the browser console, using console.log().
Using innerHTML
To access an HTML element, JavaScript can use the document.getElementById(id) method.

The id attribute defines the HTML element. The innerHTML property defines the HTML content:

Example

My First Web Page

My First Paragraph

document.getElementById(“demo”).innerHTML = 5 + 6;

»
Changing the innerHTML property of an HTML element is a common way to display data in HTML.

Using document.write()
For testing purposes, it is convenient to use document.write():

Example

My First Web Page

My first paragraph.

document.write(5 + 6);

»
Using document.write() after an HTML document is fully loaded, will delete all existing HTML:

Example

My First Web Page

My first paragraph.

Try it

»
The document.write() method should only be used for testing.

Using window.alert()
You can use an alert box to display data:

Example

My First Web Page

My first paragraph.

window.alert(5 + 6);

»
Using console.log()
For debugging purposes, you can use the console.log() method to display data.

You will learn more about debugging in a later chapter.

Example

console.log(5 + 6);

»

❮ Previous Next ❯

Leave a comment