Skip to content

Instantly share code, notes, and snippets.

@Tushkiz
Created May 7, 2013 18:53
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 Tushkiz/5535116 to your computer and use it in GitHub Desktop.
Save Tushkiz/5535116 to your computer and use it in GitHub Desktop.
Random Number Function
function randomNumber(from, to) {
return Math.floor((Math.random()*(to - from + 1)) + from);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment