javascript innerhtml dangerous code example
Example 1: javascript innerhtml
document.getElementById("example").innerHTML = "Paragraph changed!";
Example 2: javascript innertext vs innerhtml
innerHTML shows everything inside of the element.
innerText shows only the text inside of the element.