javascript textcontent vs innertext

JavaScript
getValue.innerHTML// =>   This element is <strong>strong</strong> and     has some super fun <code>code</code>!getValue.textContent// =>   This element is strong and     has some super fun code!getValue.innerHTMLThis element is <strong>strong</strong> and has    some super fun <code>code</code>!getValue.innerTextThis element is strong and has some super fun code!getValue.textContentThis element is strong and     has some super fun code!
Source

Also in JavaScript: