Estoy intentando hacer algo así, pero siempre obtengo "undefined":
Código:
Estoy seguro de que se me escapa algún concepto, pero estoy harto de buscar y no encuentro ninguna solución. ¿Se os ocurre algo?function Groups(){} Groups.prototype.test1 = function(x) { return this.test2(x); }; Groups.prototype.test2 = function(x) { return x == 1; }; var prueba = new Groups(); prueba.test1(2);
Gracias. Un saludo.