Skip to content

Instantly share code, notes, and snippets.

@alexwarren
Created March 23, 2015 16:04
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 alexwarren/74554bd2bb812a82df46 to your computer and use it in GitHub Desktop.
Save alexwarren/74554bd2bb812a82df46 to your computer and use it in GitHub Desktop.
var randomnumber = function rng(min, max) {
return Math.floor(Math.random() * (max - min) + min);
}
set ("mynumber", randomnumber(1,6));
Generated {mynumber}.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment