Skip to content

Instantly share code, notes, and snippets.

@bganicky
Created January 11, 2018 11:21
Show Gist options
  • Select an option

  • Save bganicky/f0ef045eb7e247441e62d2bdaa854f7f to your computer and use it in GitHub Desktop.

Select an option

Save bganicky/f0ef045eb7e247441e62d2bdaa854f7f to your computer and use it in GitHub Desktop.
const getRandomInt = max => Math.floor(Math.random() * Math.floor(max))
const candidates = ['drahos', 'horacek', 'hilser', 'fischer']
const myVote = candidates[getRandomInt(candidates.length)]
console.log(myVote)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment