Skip to content

Instantly share code, notes, and snippets.

@randomrawat
Created August 31, 2024 16:33
Show Gist options
  • Save randomrawat/1a9a527c8f08475654649255863991d3 to your computer and use it in GitHub Desktop.
Save randomrawat/1a9a527c8f08475654649255863991d3 to your computer and use it in GitHub Desktop.
Code in vanilla JS by creating and appending an h1 to our div#root (without using innerHTML)
const h1 = document.createElement("h1")
h1.textContent = "This is an imperative way to program"
h1.className = "header"
document.getElementById("root").append(h1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment