javascript the difference between innerText vs. innerHTML vs. textContent

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!
Source

Also in JavaScript: