Answers for "JavaScript, Math.random()"

81

how to generate a random number in javascript

//To genereate a number between 0-1
Math.random();
//To generate a number that is a whole number rounded down
Math.floor(Math.random())
/*To generate a number that is a whole number rounded down between
1 and 10 */
Math.floor(Math.random() * 10) + 1 //the + 1 makes it so its not 0.
Posted by: Guest on March-10-2020
3

math.random

int random = (int) (Math.random()*(max-min+1)+min);
Posted by: Guest on January-03-2021

Code answers related to "JavaScript, Math.random()"

Code answers related to "Javascript"

Browse Popular Code Answers by Language