Ejemplo 1: JavaScript matemático aleatorio
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 integerMath.floor(Math.random()*10)// Will return a integer between 0 and 9Math.floor(Math.random()*11)// Will return a integer between 0 and 10// You can make functions aswell functionrandomNum(min, max)returnMath.floor(Math.random()*(max - min))+ min;// You can remove the Math.floor if you don't want it to be an integer
Ejemplo 2: número aleatorio js
var random;var max =8functionfindRandom()
random =Math.floor(Math.random()* max)//Finds number between 0 - maxconsole.log(random)findRandom()
Ejemplo 3: javascript obtiene un número aleatorio en el rango
functiongetRandomNumberBetween(min,max)returnMath.floor(Math.random()*(max-min+1)+min);//usage example: getRandomNumberBetween(20,400);
Ejemplo 4: nombre random js
// On renvoie un nombre aléatoire entre une valeur min (incluse) // et une valeur max (exclue)functiongetRandomArbitrary(min, max)returnMath.random()*(max - min)+ min;
Ejemplo 5: JavaScript Math.random ()
//Returns a number between 1 and 0console.log(Math.random());//if you want a random number between two particular numbers, //you can use this functionfunctiongetRandomBetween(min, max)returnMath.random()*(max - min)+ min;//Returns a random number between 20 and 170console.log(getRandomBetween(20,170));//if you want a random integer number from one number to another //(including the min and the max numbers), you can use this functionfunctiongetRandomIntBetween(min, max)
min =Math.ceil(min);
max =Math.floor(max);returnMath.floor(Math.random()*(max - min +1))+ min;//Returns a random integer number from 0 to 25console.log(getRandomIntInclusive(0,25));
Ejemplo 6: javascript obtiene un número aleatorio
// Returns a number between min and maxfunctiongetRandomArbitrary(min, max)returnMath.random()*(max - min)+ min;
Te mostramos las reseñas y valoraciones de los lectores
Más adelante puedes encontrar las notas de otros gestores de proyectos, tú igualmente puedes dejar el tuyo si te apetece.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)