Skip to content

Instantly share code, notes, and snippets.

@devjmetivier
Created March 28, 2022 03:54
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 devjmetivier/8b56beeb36518053bbe7ad14ab011673 to your computer and use it in GitHub Desktop.
Save devjmetivier/8b56beeb36518053bbe7ad14ab011673 to your computer and use it in GitHub Desktop.
Returns a random number between min and max (both included)
function getRandomNumberInc(min: number, max: number): number {
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