como gerar numeros aleatorios em javascript a Partir de uma fuo
function getRandom(max) {
return Math.floor(Math.random() * max + 1)
}
Ageu Menezes Costa
function getRandom(max) {
return Math.floor(Math.random() * max + 1)
}