Programming Code Center(PCC)
[JS]

(PCC)::[How-to-Writing-JavaScript-code-into-the-HTML-output]::[js]

File Name : index.html

<!DOCTYPE html>
<html>
<body>

<h2>My First Web Page</h2>
<p>My first paragraph.</p>

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

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

</body>
</html> 

Output :

My First Web Page

My first paragraph.

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