Skip to content

Instantly share code, notes, and snippets.

@kirnovak
Created May 31, 2014 10:50
Show Gist options
  • Save kirnovak/288329fb77e8411aa18b to your computer and use it in GitHub Desktop.
Save kirnovak/288329fb77e8411aa18b to your computer and use it in GitHub Desktop.
var random = function(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