How could I add a copy of the first tag at the end of an Array, since push() ,as I understand can't be used in this situation...
<p>A</p>
<p>B</p>
<p>C</p>
<script>
var pArray=document.getElementsByTagName("p");
//now I would like to add pArray[0]
</script>