ESTOY HACIENDO UN MP3 Y HE VISTO UN CODIGO DE UN MP3 CON AS1 este codigo:
--------------------------------------------------------------------------------------------------
XMLNode.prototype.moveBefore = function(beforeNode){
if (this == beforeNode) return (0);
beforeNode.parentNode.insertBefore( this.cloneNode(true), beforeNode);
this.removeNode();
}
-----------------------------------------------------------------------------------------------
La verdad no entiendo este trozo de codigo .
Si alguien me pueda ayudar sobre prototype?