js regex find text between html tags code example
Example: get contents between tags javascript
// Using ES2015+ fat-arrow-function syntax
const getTextOfElement = () => {
const element = document.getElementById('elementId'); // Get desired HTML element
console.log(element.textContent); // Get text of element & display in console
}