Function to create a HTML Element

PHOTO EMBED

Thu May 12 2022 20:15:35 GMT+0000 (Coordinated Universal Time)

Saved by @jen_magpantay #javascript

function createNode(element) {
  return document.createElement(element);
}

function append(parent, el) {
  return parent.appendChild(el);
}
content_copyCOPY