Skip to content

Instantly share code, notes, and snippets.

@germanfrelo
Last active March 3, 2022 16:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save germanfrelo/2b9d0a49c45b93887325e1b29e4443f2 to your computer and use it in GitHub Desktop.
Save germanfrelo/2b9d0a49c45b93887325e1b29e4443f2 to your computer and use it in GitHub Desktop.
Get a random integer between two values, inclusive
// Getting a random integer between two values, inclusive
// Reference: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random#getting_a_random_integer_between_two_values_inclusive
function getRandomIntInclusive(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1) + min);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment