Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@matgargano
Created April 30, 2020 21:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matgargano/c6f06827e99cfe7b1acb2348a5739ad1 to your computer and use it in GitHub Desktop.
Save matgargano/c6f06827e99cfe7b1acb2348a5739ad1 to your computer and use it in GitHub Desktop.
/**
*
* Returns a random element from an array
*
*/
function random_item(items) {
return items[Math.floor(Math.random()*items.length)];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment