Criei uma tabela dinâmica que gera valores de 1 a 60, e também tenho uma function que gera 6 dezenas aleatórias.
agora eu preciso de uma maneira de comparar os valores do array com os valores de das células da tabela.
até o momento eu possuo:
function tabela(){
document.writeln('<table>');
for(var i=0; i<=5; i++){
document.writeln('<tr>');
for(var j=1; j<=10; j++){
if(j>=10){
var h = (i*10)+j;
document.writeln('<td>'+[h]+ '</td>');
}else{
document.writeln('<td>'+[i]+[j]+ '</td>');
}
}
document.writeln('</tr>');
}
document.writeln('</table>');
}
function sorteio(){
function getRandom(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
var array = [];
for (var i = 0 ; i < 6 ; i++){
var num = getRandom(1,60);
if(array.indexOf(num) == -1){
array.push(num);
}else{ i--;}
}
console.log(array);
}
functio verificaTabela(){
}
se alguém puder dar alguma sugestão.