What\'s the difference between HTMLElement and Element ?
HTMLElement
Element
document.createElement(\"div\") instanceof Element gives true
document.createElement(\"div\") instanceof Element
HTMLElement refers explicitly to an HTML element whereas Element may refer to an XML element. However, HTMLElement is technically a subset of Element.