Skip to content

Instantly share code, notes, and snippets.

@alfredfrancis
Created January 28, 2017 06:45
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 alfredfrancis/7783d5336e532e71665e4dce27cec5a3 to your computer and use it in GitHub Desktop.
Save alfredfrancis/7783d5336e532e71665e4dce27cec5a3 to your computer and use it in GitHub Desktop.
var colors = {
1:"#ff1123",
2:"#000000",
3:"#010101"
}
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
var picked = colors[getRandomInt(1,colors.length)];
alert(picked);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment