Skip to content

Instantly share code, notes, and snippets.

@devjmetivier
Created March 28, 2022 03:55
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/cc59eb4e84f73661581ac8371ccd5870 to your computer and use it in GitHub Desktop.
Save devjmetivier/cc59eb4e84f73661581ac8371ccd5870 to your computer and use it in GitHub Desktop.
Returns a random number between min and max (both excluded)
function getRndInteger(min: number, max: number): number {
return Math.floor(Math.random() * (max - min) ) + min;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment