var paragraph = document.getElementById("p");
paragraph.textContent += "This just got added";
document.getElementById("p").textContent += " this has just been added";
var p = document.getElementById("p")
p.innerText = p.innerText+" And this is addon."
var paragraph = document.getElementById("p");
var text = document.createTextNode("This just got added");
paragraph.appendChild(text);