Answers for "random number function"

65

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
}
Posted by: Guest on November-25-2020
37

javascript get random number in range

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

//usage example: getRandomNumberBetween(20,400);
Posted by: Guest on July-23-2019
4

javascript get random integer in given range

const randomInteger = (min, max) => Math.floor(Math.random() * (max - min + 1)) + min;
Posted by: Guest on July-03-2020
7

Random number

function randomInteger(min, max) {
  return Math.floor(Math.random() * (max - min + 1)) + min;
}
Posted by: Guest on May-29-2020
0

javascript random number function

let result = RandomNumber(5, 9); // result can be any value from 5 to 9

// Random number between min and max (min and max included)
function RandomNumber(min, max) {
    return Math.floor(Math.random() * (max - min + 1)) + min;
}
Posted by: Guest on October-03-2021

Code answers related to "random number function"

Code answers related to "Javascript"

Browse Popular Code Answers by Language