1getValue.innerHTML// => This element is <strong>strong</strong> and has some super fun <code>code</code>!
1getValue.textContent// => This element is strong and has some super fun code!
1Inner text below. It inject string as it is into the element.
2My name is <b class="name">Raj Yadav</b>.
3
4Inner html below. It renders the string into the element and treat as part of html document.
5My name is Raj Yadav.