Como gerar numeros aleatorios em javaScript un Partir de Uma Funo
function getRandom(max) {
return Math.floor(Math.random() * max + 1)
}
Ageu Menezes Costa
function getRandom(max) {
return Math.floor(Math.random() * max + 1)
}