Como Gerar Numeros Aleatorios em JavaScript A Partir de Uma Funo

function getRandom(max) {
    return Math.floor(Math.random() * max + 1)
}
Ageu Menezes Costa