Skip to content

Instantly share code, notes, and snippets.

@pbzona
Created July 20, 2018 17:46
Show Gist options
  • Save pbzona/af7a2368c8bdc9cd94787a5e292f8fc5 to your computer and use it in GitHub Desktop.
Save pbzona/af7a2368c8bdc9cd94787a5e292f8fc5 to your computer and use it in GitHub Desktop.
colors 2
const colors1 = ['#111', '#222', '#333'];
const colors2 = ['#444', '#555', '#666'];
const colorChoice = (n) => {
return n[Math.floor(Math.random() * n.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