Javascript Output Flashcards

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().

1
Q

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:

A

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

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

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

p>Never call document.write after the document has finished loading.
It will overwrite the whole document./p>

A

script>
document.write(5 + 6);
/script>

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

button type=”button” onclick=”document.write(5 + 6)”>Try it/button>
The document.write() method should only be used for testing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Using window.alert()

You can use an alert box to display data:

A

script>
window.alert(5 + 6);
/script>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Using console.log()

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

A

script>
console.log(5 + 6);
/script>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly