Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
1
respuesta

[Sugerencia] Identar código

Alguna recomendación para aprender mas sobre identar código de.forma correcta??

1 respuesta

Basicamente consiste en tabular tu codigo, cuando abres llaves es cuando normalmente haces una identacion y cuando cierras llave vas regresando las tabulaciones

function sortearNumeros(cantidad) {**<--IDENTACION EN LA SIGUIENTE LINEA**
        var secreto=[];
        var contador=1;
        while(contador<=cantidad){ **<--IDENTACION EN LA SIGUIENTE LINEA**
            var numeroAleatorio=aleatorio();
            console.log(numeroAleatorio);
            var encontrado=false;
            for (var posicion = 0; posicion < secreto.length; posicion++) {**<--IDENTACION EN LA SIGUIENTE LINEA**
                if (numeroAleatorio==secreto[posicion]) {**<--IDENTACION EN LA SIGUIENTE LINEA**
                    encontrado=true;
                }
            }
            if (encontrado==false) {**<--IDENTACION EN LA SIGUIENTE LINEA**
                secreto.push(numeroAleatorio);
                contador++;
            }
        }
        return secreto;
    }