Skip to content

Instantly share code, notes, and snippets.

@david-pm
Created February 19, 2015 02:36
Show Gist options
  • Save david-pm/ea3439c54475cc2335a1 to your computer and use it in GitHub Desktop.
Save david-pm/ea3439c54475cc2335a1 to your computer and use it in GitHub Desktop.
Call random number between 0-max (JavaScript ES5)
var randNum = function(max) {
return Math.floor(Math.random() * max);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment