Answers for "return random int js"

3

javascript random integer

const randInt = (min, max) => Math.floor(min + Math.random() * (max - min + 1));
Posted by: Guest on February-05-2021
0

javascript get random number

// Returns an integer between min and max (the maximum is exclusive and the minimum is inclusive)
function getRandomInt(min, max) {
  min = Math.ceil(min);
  max = Math.floor(max);
  return Math.floor(Math.random() * (max - min) + min); 
}
Posted by: Guest on November-19-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language