I would like to have a button with the function of PAUSE
, and delete duplicate numbers.
A counter below that when I press PAUSE
it displays the number of the result with the TOTAL of generated lines.
function append(el) {
//eu coloco os 16 primeiro digitos aqui, e ele gera mais 4 aleatorio
var txt = "1212" + "9057" + "9240" + "8105";
var x = Math.floor((Math.random() * 9000) + 1000);
document.getElementById(el).innerHTML += txt + x + "<br>";
//tempo de gerar numeros 1s
setTimeout(function() {
append("timeout");
}, 1000);
//AQUI EU QUERO UM FILTRA PARA NAO DUPLICAR
// E UM BOTAO DE PAUSE E UM TXT COM TOTAL DE LINHAS GERADAS
}
append("timeout");
<p>GERADOR DE NUMEROS SEM REPETIÇAO E COM BOTAO DE PAUSE</p>
<hr>
<button name="pause" id="pause">PAUSE</button>
<div id="timeout"></div>
<div id="interval"></div>