Learn JavaScript innerHTML, outerHtml, innerText and textContent | Learn JavaScript For Beginner
innerText & textContent
These allow the rendering output into any HTML container element that can display text content.
They will not allow rich text formats.
They can display only plain text.
innerHTML:
It is similar to innerText and textContent but allows all rich formats with markup.
outerHTML:
It is similar to innerHTML but can replace the existing element with the new element.