Created
March 7, 2019 20:20
-
-
Save mfrachet/ba6e5c98e44e82de15ca1320e721a0c9 to your computer and use it in GitHub Desktop.
dom-example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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