Skip to content

Instantly share code, notes, and snippets.

@xto3na
Created October 24, 2015 20:23
Show Gist options
  • Save xto3na/8aab35e21b21b16f67aa to your computer and use it in GitHub Desktop.
Save xto3na/8aab35e21b21b16f67aa to your computer and use it in GitHub Desktop.
Random JS
var getRandom = function (min, max) {
return Math.random() * (max - min) + min;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment