//Objetivo: gerar numeros entre
function gerarNumerosEnte(min, max) {
if(min > max){
[max, min] = [min, max]
const [x, y] = a
}
//valor aleatório
return new Promise(resolve => {
const fator = max - min + 1
const aleatorio = parseInt(Math.random() * fator) +min
resolve(aleatorio)
})
}
gerarNumerosEnte(5, 20).then(console.log)
gerarNumerosEnte(7, 40)
//composição de função
.then(num => num * 10)//número multiplicado por 10
.then(numX10 => `O número gerado foi ${numX10}`)
.then(console.log)//imprimindo o valor
Nenhum comentário:
Postar um comentário