“Obtenga un número aleatorio con Min y Max” Código de respuesta

Obtenga un número aleatorio con Min y Max

const randomNumber = getRandomNumberBetween(1,1000)
const getRandomNumberBetween = (min, max) => {
    return Math.floor(Math.random() * (max - min + 1) + min)
}
CodePadding

Genere un número aleatorio entre Min y Max

var min = 1;
var max = 90;
var stop = 6;  //Number of numbers to extract

var numbers = [];

for (let i = 0; i < stop; i++) {
  var n =  Math.floor(Math.random() * max) + min;
  var check = numbers.includes(n);

if(check === false) {
  numbers.push(n);
} else {
  while(check === true){
    n = Math.floor(Math.random() * max) + min;
    check = numbers.includes(n);
      if(check === false){
        numbers.push(n);
      }
    }
  }
}

sort();

 //Sort the array in ascending order
 function sort() {
   numbers.sort(function(a, b){return a-b});
   document.getElementById("array_number").innerHTML = numbers.join(" - ");
}
Graceful Gorilla

Respuestas similares a “Obtenga un número aleatorio con Min y Max”

Preguntas similares a “Obtenga un número aleatorio con Min y Max”

Más respuestas relacionadas con “Obtenga un número aleatorio con Min y Max” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código