Ver originalfunction Perro(){ this.edad = 1; this.aumentarEdad = function() { this.edad++; } this.mostrarEdad = function() { alert(this.edad); }}