0
I have a simple array that is generated with random numbers
function gerarNumeros() {
//Defina aqui a quantidade de numeros que serão gerados
let quantidadeNumeros = document.getElementById("quantidadenumeros").value
/* - - - - - - - - - - - - - - - - - - - - */
let arrayNumeros = []
let contador = 1
while (contador <= quantidadeNumeros) {
//Gera um numero de 6 digitos
let numero = Math.floor(100000 + Math.random() * 900000)
//Se o numero aleoatóio NÃO está no array, adiciona ele e continua com o while, senão, gera outro
if (!arrayNumeros.includes(numero)) {
arrayNumeros.push(numero)
contador++
}
}
console.log(arrayNumeros)
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<h3>
Digite a Quantidade de Números para gerar:
</h3>
<input type="number" id="quantidadenumeros"><br/>
<input type="button" onclick="gerarNumeros();" id="botaoDownload" value="Download CSV">
(Code: https://jsfiddle.net/1pfgnb78/3/ )
Array example:
[223452, 754168, 816518, 826338, 357144, 163946]
How I wish it to stay on file. csv:
Hello, put the code in the question and not the link.
– renanvm