<p>This element has extra spacing and containes <span>a span element</span>.</p>
-
innerHTML
: the text content of the element, including spaces and inner HTML tags. Output:This element has extra spacing and contains <span>a span element</span>.
-
innerText
: the text content of the element and its children, without spaces* and without tags. Output:This element has extra spacing and contains a span element.