appendChild
Append a node to an element, effectively Node.prototype.appendChild.
    mutate.appendChild.call(parent, child)
  
  
  
  Parameters
- parent 
{Node}:The parent into which the child is inserted.
 - child 
{Node}:The child which will be inserted into the parent.
 
Returns
 {Node}: 
The appended child.