b) What is the output of this program? $("p:first-child").text(); 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);