Skip to content

Instantly share code, notes, and snippets.

@sagerio
Created December 27, 2017 23:16
Show Gist options
  • Save sagerio/2667867c4b3360fdeb6d1cfc110fc605 to your computer and use it in GitHub Desktop.
Save sagerio/2667867c4b3360fdeb6d1cfc110fc605 to your computer and use it in GitHub Desktop.
Javascript Random Numbers
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