//creates div then assigns a reference of that object to myElement variable
let myElement = document.createElement('div')
//myElement.setAttribute("type here", "customName here")
myElement.setAttribute("class", "myClassName")
myElement.setAttribute("id", "myUniqueIDName")