Skip to content

Instantly share code, notes, and snippets.

@BrianSipple
Created May 3, 2017 06:48
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 BrianSipple/bc8ab51bee2133121ea0dac41884f8be to your computer and use it in GitHub Desktop.
Save BrianSipple/bc8ab51bee2133121ea0dac41884f8be to your computer and use it in GitHub Desktop.
const { floor, random } = Math;
function boundedRandom(min, max) {
const spread = max - min;
return min + floor(random() * spread);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment