Answers for "javascipt random int"

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

random int javascript

/** Generates integers between low (inclusive) and high (exclusive) */
function generateRandomInteger(low, high) {
  const lowCeil = Math.ceil(low);
  const highFloor = Math.floor(high);
  const randomFloat = lowCeil + Math.random() * (highFloor - lowCeil);

  return Math.floor(randomFloat);
}
Posted by: Guest on January-03-2022
0

random numbers javascript

Math.floor(Math.random() * 100);     // returns a 
  random integer from 0 to 99
Posted by: Guest on January-07-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language