eltextContent
eltextContent refers to the text content of an HTML element. In web development, when working with the Document Object Model (DOM), elements are represented as objects. Each element object has properties that allow developers to access and manipulate its content. The `textContent` property specifically provides a way to get or set the text contained within an element, including any descendant text nodes.
When retrieving `textContent`, it returns all the text within an element and its descendants, excluding HTML
Conversely, when setting `textContent`, any existing content within the element is replaced by the provided string.