Skip to content

Instantly share code, notes, and snippets.

@wholypantalones
Created January 28, 2013 13:37
Show Gist options
  • Select an option

  • Save wholypantalones/4655555 to your computer and use it in GitHub Desktop.

Select an option

Save wholypantalones/4655555 to your computer and use it in GitHub Desktop.
random.js
var numLow = 1;
var numHigh = 9999;
var adjustedHigh = (parseFloat(numHigh) - parseFloat(numLow)) + 1;
var numRand = Math.floor(Math.random()*adjustedHigh) + parseFloat(numLow);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment