I need to stop this while without a brake or a better way solve it
function validacion_contenidos(palabra)
{
j=0;
if(palabra.length >= 4)
{
//dw("palabra valida");
while(j < palabra.length)
{
letra=palabra.charCodeAt(j);
//dw(letra);
if(letra >= 97 && letra <= 122 || letra >= 65 && letra <= 90)
{
val=true;
}
else
{
val=false;
//how do I stop this while here without breake();
}
j++
}
}
else
{
dw("Palabra invalida. Ingrese mas caracteres");
}
if(val == true)
{
dw("Palabra valida");
}
else
{
dw("Palabra invalida. Contiene caracteres no perminitdos");
}
}
dw it's a function for document.write........
Thanks