0
Q:

random function javascript

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

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

Math.floor(Math.random() * 100);     // returns a 
  random integer from 0 to 99
 
1
// 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;
1
function getRandomNumberBetween(min,max){
    return Math.floor(Math.random()*(max-min+1)+min);
}
4
function randomNumber(min, max) {
  return Math.random() * (max - min) + min;
}
4
/* If 1 argument is given, minimum will be set to 0 and maximum to this argument
 * If 2 arguments were given, the fist would be the minimum and the second the maximum
 * The function will return an integer in [min, max[
 */
const Math.randint = function (min,max) {
  [min,max] = (max===undefined)?[0,min]:(min>max)[max,min]:[min,max];
  return Math.floor(Math.random*(max-min)+min);
}
4
let object = random(0, 50);
// making "object" a random number between 0 and 50.

console.log(object);
// printing object in the console
0

New to Communities?

Join the community