Output Display Possibilities in Javascript
Table of Content:
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()
.
1. 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:
Welcome to My First Web Page
This is My First Paragraph
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()
:
Welcome to My First Web Page
This is My first paragraph.
Using document.write() after an HTML document is loaded, will delete all existing HTML
Welcome to My First Web Page
This is My first paragraph.
The document.write() method should only be used for testing.
Using window.alert()
You can use an alert box to display data:
Example
Welcome to My First Web Page
This is My first paragraph.
Using console.log()
For debugging purposes, you can use the console.log()
method to display data.