12. How do you update the text in a paragraph using JavaScript using DOM? code example
Example: js add more text to element
document.getElementById("p").textContent += " This is the text from javascript.";
<p id ="p">This is the text from HTML.</p>