“JS Número aleatorio entre 1 y 5” Código de respuesta

Número aleatorio de JavaScript entre 1 y 10

// Genereates a number between 0 to 1;
Math.random();

// to gerate a randome rounded number between 1 to 10;
var theRandomNumber = Math.floor(Math.random() * 10) + 1;
Scriper

JS obtiene un número aleatorio entre

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

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

Número aleatorio mecanografiado

/**
* 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

JS Número aleatorio entre 1 y 10

var randomNumber =  Math.floor(Math.random() * (max - min + 1)) + min;
//max is the highest number you want it to generate
//min is the lowest number you want it to generate
Panicky Pigeon

JavaScript Número aleatorio entre

//returns a random number between min and max

const randomNumbers = (min, max) => {
	return Math.round(Math.random() * (max - min)) + min;
}
Code Walker

JS Número aleatorio entre 1 y 5

const rndInt = Math.floor(Math.random() * 6) + 1
    console.log(rndInt)
 Run code snippet
Shadow

Respuestas similares a “JS Número aleatorio entre 1 y 5”

Preguntas similares a “JS Número aleatorio entre 1 y 5”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código