Skip to content

Instantly share code, notes, and snippets.

@theneosloth
Last active December 13, 2015 22:19
Show Gist options
  • Save theneosloth/4983455 to your computer and use it in GitHub Desktop.
Save theneosloth/4983455 to your computer and use it in GitHub Desktop.
Random choice from an array in javascript
function randomChoice(array)
{
var random = Math.random();
random *= array.length;
random = Math.floor(random);
return array[random]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment