Answers for "randomint function js"

5

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
-1

what would (int) (Math.random()) output

(int) (Math.random())
Posted by: Guest on November-02-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language