Skip to content

Instantly share code, notes, and snippets.

@home-gihub
Created October 23, 2023 12:39
Show Gist options
  • Save home-gihub/620aa33f86806e078e4f349d511b9b54 to your computer and use it in GitHub Desktop.
Save home-gihub/620aa33f86806e078e4f349d511b9b54 to your computer and use it in GitHub Desktop.
dom element maker
function $(type, inside) {
let el = document.createElement(type)
el.appendChild(inside)
return el
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment