Answers for "math random seed"

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
0

js random seed

/* You can't manually set JS random generator's seed.
 * the only way to set the seed is to implement your own random number
 * generator, or use an existing one.
 */
Posted by: Guest on July-28-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language