Returns the text directly under this element.
Unlike innerText, it does not recurse, and unlike firstInnerText, it continues past child tags. So, <example>some <b>bold</b> text</example> will return some text because it only gets the text, skipping non-text children.
firstInnerText, innerText
See Implementation
Returns the text directly under this element.