Skip to content

Instantly share code, notes, and snippets.

@larchanka
Last active August 23, 2020 10:38
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 larchanka/0106c00b81b8eb57849856b12c8d11c8 to your computer and use it in GitHub Desktop.
Save larchanka/0106c00b81b8eb57849856b12c8d11c8 to your computer and use it in GitHub Desktop.
Random Interval
function randomIntFromInterval(min, max) { // min and max included
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