“Nombre aléatoire étant donné une plage js” Réponses codées

JavaScript obtient un tableau aléatoire d'impré dans une plage donnée

const randomArrayInRange = (min, max, n) => Array.from({ length: n }, () => Math.floor(Math.random() * (max - min + 1)) + min);

// Example
randomArrayInRange(1, 100, 10); 
Batman

Nombre aléatoire javascript dans la plage

function getRandomInt(min, max) {
  min = Math.ceil(min);
  max = Math.floor(max);
  return Math.floor(Math.random() * (max - min)) + min; //The maximum is exclusive and the minimum is inclusive
}
Sore Sandpiper

Nombre aléatoire étant donné une plage js

const randomNumber = ({ min, max } = { min: 0, max: 1 }) => {
  if (min >= max) {
    throw Error(
      `minimum value (${min}) is larger than or equal to maximum value (${max})`
    );
  }

  return Math.floor(Math.random() * Math.floor(max - min + 1) + min);
};

// Usage: random number between 10 and 100.
const n = randomNumber({ min: 10, max: 100 });
abdelghanyMh

Réponses similaires à “Nombre aléatoire étant donné une plage js”

Questions similaires à “Nombre aléatoire étant donné une plage js”

Plus de réponses similaires à “Nombre aléatoire étant donné une plage js” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code