//select the div with id of "comments"
const comments = document.getElementById("comments");
//change the inner html of the div with id of "comments" to "Hello World!"
comments.innerHTML = "Hello World!";
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)