Alguna recomendación para aprender mas sobre identar código de.forma correcta??
Alguna recomendación para aprender mas sobre identar código de.forma correcta??
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;
}