createTextNode vs innerHTML vs textContent
importance: 5
We have an empty DOM element elem and a string text.
Which of these 3 commands will do exactly the same?
elem.append(document.createTextNode(text))elem.innerHTML = textelem.textContent = text
Answer: 1 and 3.
Both commands result in adding the text "as text" into the elem.
Here’s an example: