Nodes as more complex Objects?

ok, ignore the image thing - it turns out that Chrome translates image to img :frowning: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/image

let a = document.createElement("div"); 
a.innerHTML = "<image src='.' />"; 
console.log(a.innerHTML) // shows <img src=".">