Skip to content

Instantly share code, notes, and snippets.

@LouisHrg
Created April 7, 2022 12:49
Show Gist options
  • Save LouisHrg/5d005a1e836dc503f7888cf22f8a94ea to your computer and use it in GitHub Desktop.
Save LouisHrg/5d005a1e836dc503f7888cf22f8a94ea to your computer and use it in GitHub Desktop.
CreateElement
const createElement = (type, config, parent = null) => {
const element = document.createElement(type);
if(config && config.text) {
element.innerHTML = config.text;
}
if(!parent) {
root.appendChild(element);
} else {
parent.appendChild(element)
}
return element;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment