JSFiddle - React, Tailwind, and code Playground
HTML
<span>This is Outside Text
<span>This is Inside Text</span>
</span>
JavaScript
alert ( document.querySelector( "span" ).firstChild.nodeValue );
<span>This is Outside Text
<span>This is Inside Text</span>
</span>
alert ( document.querySelector( "span" ).firstChild.nodeValue );