Skip to content

Instantly share code, notes, and snippets.

@vanrez-nez
Last active January 15, 2016 19:54
Show Gist options
  • Save vanrez-nez/7b141b283c14406c40f8 to your computer and use it in GitHub Desktop.
Save vanrez-nez/7b141b283c14406c40f8 to your computer and use it in GitHub Desktop.
Random Utils
function getRandomNumber(min, max) {
return Math.random() * (max - min) + min;
}
function getRandomColor() {
// http://stackoverflow.com/questions/1484506/random-color-generator-in-javascript
return "#"+((1<<24)*Math.random()|0).toString(16);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment