¿Qué valor se obtiene al ejecutar p1.describir() en el siguiente código?
function Persona(nombre, edad) {
this.nombre = nombre;
this.edad = edad;
this.describir = function() {
return `${this.nombre} tiene ${this.edad} años`;
};
}
const p1 = new Persona('Ana', 25);