Skip to content

Instantly share code, notes, and snippets.

@vasylpb
Created September 9, 2022 14:17
Show Gist options
  • Save vasylpb/d6e91b9f41f4550d82761f03a7222548 to your computer and use it in GitHub Desktop.
Save vasylpb/d6e91b9f41f4550d82761f03a7222548 to your computer and use it in GitHub Desktop.
function getRandomValue(min, max) {
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