Skip to content

Instantly share code, notes, and snippets.

@maxvipon
Created September 11, 2015 09:41
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 maxvipon/b021f33b9a4ce6be9de9 to your computer and use it in GitHub Desktop.
Save maxvipon/b021f33b9a4ce6be9de9 to your computer and use it in GitHub Desktop.
Random item from Array
items[ Math.floor(Math.random() * items.length) ]
items[ ~~(Math.random() * items.length) ]
items[ Math.random() * items.length >>> 0 ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment