firstchild.innerhtml undefined in angular 9 code example
Example: how to add first child using js
var eElement; // some E DOM instance
var newFirstElement; //element which should be first in E
eElement.insertBefore(newFirstElement, eElement.firstChild);