Skip to content

Instantly share code, notes, and snippets.

@1-800-jono
Created July 5, 2018 19:20
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 1-800-jono/ddfda6f7efc4ce27e921f7ade68928b8 to your computer and use it in GitHub Desktop.
Save 1-800-jono/ddfda6f7efc4ce27e921f7ade68928b8 to your computer and use it in GitHub Desktop.
Get random item from array in JS
nameArray = ['Mike', 'Tom', 'Jose'];
randomArrayItem = Math.floor(Math.random() * nameArray.length);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment