Skip to content

Instantly share code, notes, and snippets.

@mfrachet
Created March 7, 2019 20:20
Show Gist options
  • Save mfrachet/ba6e5c98e44e82de15ca1320e721a0c9 to your computer and use it in GitHub Desktop.
Save mfrachet/ba6e5c98e44e82de15ca1320e721a0c9 to your computer and use it in GitHub Desktop.
dom-example
const element = document.createElement("div");
const childElement = document.createElement("span");
childElement.textContent = "Hello world"
element.appendChild(childElement);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment