Skip to content

Instantly share code, notes, and snippets.

@zahra-ove
Last active March 16, 2022 05:49
Show Gist options
  • Save zahra-ove/b0da836a81574f973326ca49620fefa6 to your computer and use it in GitHub Desktop.
Save zahra-ove/b0da836a81574f973326ca49620fefa6 to your computer and use it in GitHub Desktop.
// create h1 element and append it to root element that already exists in the dom
const h = document.createElement("h1");
h.textContent = "some dummy text";
h.className = "header";
document.getElementById("root").append(h);
=======================
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment