textcontent js

JavaScript
// The textContent property sets or returns the text content of the specified node

// read text content from id .. 
let text = document.getElementById('id').textContent;
console.log(text);

// change text content of id .. 
document.getElementById('id').textContent = "text is changed now !";function getContent() {
    return document.getElementById("myParagraph").innerHTML;
}

Source

Also in JavaScript: