Skip to content

Instantly share code, notes, and snippets.

@pbzona
Created July 20, 2018 17:39
Show Gist options
  • Save pbzona/feb44019217e6d819655aab49fa9fc80 to your computer and use it in GitHub Desktop.
Save pbzona/feb44019217e6d819655aab49fa9fc80 to your computer and use it in GitHub Desktop.
color randomizer
const colors1 = ['#111', '#222', '#333'];
const colors2 = ['#444', '#555', '#666'];
const colorChoice = (colors) => {
return colors[Math.floor(Math.random() * colors.length)];
};
colorChoice(colors1);
// Returns one of: ['#111', '#222', '#333']
colorChoice(colors2);
// Returns one of: ['#444', '#555', '#666']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment