Hola, ¿existe alguna forma de hacer el siguiente código un poco más sencillo o reducido?
Código:
function checkDNI(dni){
if(!checkCIF(dni)){
if(!checkNIF(dni)){
if(!checkNSS(dni)){
alert('{CHECK_DNI}');
return false;
}else{
return true;
}
}else{
return true;
}
}else{
return true;
}
}
Gracias de antemano