Answers for "Can you write a random integers function to print integers within a range in js"

4

javascript get random integer in given range

const randomInteger = (min, max) => Math.floor(Math.random() * (max - min + 1)) + min;
Posted by: Guest on July-03-2020
0

javascript random int in range

function randomInt(min, max) {
  return Math.floor(Math.random() * (max - min + 1) + min)
}

console.log(randomInt(1, 6)) // random integer between 1 and 6
Posted by: Guest on July-13-2021

Code answers related to "Can you write a random integers function to print integers within a range in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language