“Random Int JavaScript” Kod odpowiedzi

Math.random JavaScript

Math.random() 
// will return a number between 0 and 1, you can then time it up to get larger numbers.
//When using bigger numbers remember to use Math.floor if you want it to be a integer
Math.floor(Math.random() * 10) // Will return a integer between 0 and 9
Math.floor(Math.random() * 11) // Will return a integer between 0 and 10

// You can make functions aswell 
function randomNum(min, max) {
	return Math.floor(Math.random() * (max - min)) + min; // You can remove the Math.floor if you don't want it to be an integer
}
OssieFromDK

JS losowy

function getRandomNumberBetween(min,max){
    return Math.floor(Math.random()*(max-min+1)+min);
}

//usage example: getRandomNumberBetween(20,400); 
Grepper

Liczba losowa TypeScript

/**
* Gets random int
* @param min 
* @param max 
* @returns random int - min & max inclusive
*/
getRandomInt(min, max) : number{
	min = Math.ceil(min);
	max = Math.floor(max);
	return Math.floor(Math.random() * (max - min + 1)) + min; 
}
ChernobylBob

Nombre losowe JS

// On renvoie un nombre aléatoire entre une valeur min (incluse) 
// et une valeur max (exclue)
function getRandomArbitrary(min, max) {
  return Math.random() * (max - min) + min;
}
Disgusted Dingo

Random Int JavaScript

//Returns random Int between 0 and 2 (included)
Math.floor(Math.random()*3)
Gubo97000

Random Int JavaScript

/** Generates integers between low (inclusive) and high (exclusive) */
function generateRandomInteger(low, high) {
  const lowCeil = Math.ceil(low);
  const highFloor = Math.floor(high);
  const randomFloat = lowCeil + Math.random() * (highFloor - lowCeil);

  return Math.floor(randomFloat);
}
Distinct Dunlin

Odpowiedzi podobne do “Random Int JavaScript”

Pytania podobne do “Random Int JavaScript”

Więcej pokrewnych odpowiedzi na “Random Int JavaScript” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu