Skip to content

Instantly share code, notes, and snippets.

@alexcmgit
Last active February 11, 2020 02:28
Show Gist options
  • Save alexcmgit/e42d01cab465f196b6bff4fec7553f9b to your computer and use it in GitHub Desktop.
Save alexcmgit/e42d01cab465f196b6bff4fec7553f9b to your computer and use it in GitHub Desktop.
function randomIntFromInterval(min, max) {
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