1// Genereates a number between 0 to 1;
2Math.random();
3
4// to gerate a randome rounded number between 1 to 10;
5var theRandomNumber = Math.floor(Math.random() * 10) + 1;
1//To genereate a number between 0-1
2Math.random();
3//To generate a number that is a whole number rounded down
4Math.floor(Math.random())
5/*To generate a number that is a whole number rounded down between
61 and 10 */
7Math.floor(Math.random() * 10) + 1 //the + 1 makes it so its not 0.
1function randomNumber(min, max) {
2 return Math.floor(Math.random() * (max - min)) + min;
3}
1function getRandomNumberBetween(min,max){
2 return Math.floor(Math.random()*(max-min+1)+min);
3}
4
5//usage example: getRandomNumberBetween(20,400);
6
1var randomNumber = Math.floor(Math.random() * (max - min + 1)) + min;
2//max is the highest number you want it to generate
3//min is the lowest number you want it to generate
1function randomInRange(min, max)
2{
3 return Math.floor(Math.random() * (max - min + 1) + min);
4}