Skip to content

Instantly share code, notes, and snippets.

@wwwmarcos
Created December 4, 2019 14:23
Show Gist options
  • Save wwwmarcos/b006e3faa74b8bfe33ad2ee0fd8b4a1f to your computer and use it in GitHub Desktop.
Save wwwmarcos/b006e3faa74b8bfe33ad2ee0fd8b4a1f to your computer and use it in GitHub Desktop.
function getRandom (items) {
return items[Math.floor(Math.random()*items.length)]
}
const fruits = ['uva', 'laranja', 'batata']
getRandom(fruits)
@JuanFelix88
Copy link

Good, public utility!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment