Answers for "js randbetween"

27

random int between two numbers javascript

// Between any two numbers
Math.floor(Math.random() * (max - min + 1)) + min;

// Between 0 and max
Math.floor(Math.random() * (max + 1));

// Between 1 and max
Math.floor(Math.random() * max) + 1;
Posted by: Guest on February-09-2020
6

javascript random number between 1 and 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;
Posted by: Guest on September-02-2020
1

typescript random number

/**
* 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; 
}
Posted by: Guest on July-18-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language