Answers for "javascript random in range function"

4

random in a range js

const rnd = (min,max) => { return Math.floor(Math.random() * (max - min + 1) + min) };
Posted by: Guest on January-12-2021
1

js random int

function getRandomInt(min, max) {
    min = Math.ceil(min);
    max = Math.floor(max);
    return Math.floor(Math.random() * (max - min + 1)) + min;
}
Posted by: Guest on September-18-2020

Code answers related to "javascript random in range function"

Code answers related to "Javascript"

Browse Popular Code Answers by Language