JSFiddle - React, Tailwind, and code Playground
HTML
<div id="divA">This is <span>some</span> text!</div>
JavaScript
let text = document.getElementById('divA').innerText;
alert(text)
<div id="divA">This is <span>some</span> text!</div>
let text = document.getElementById('divA').innerText;
alert(text)