Skip to content

Instantly share code, notes, and snippets.

@gioiliop7
Created January 5, 2023 15:52
Show Gist options
  • Save gioiliop7/cb1f013884f9e7d66300570a3cf3b0d8 to your computer and use it in GitHub Desktop.
Save gioiliop7/cb1f013884f9e7d66300570a3cf3b0d8 to your computer and use it in GitHub Desktop.
[JAVASCRIPT] Select random element from an array
function selectRandom(array) {
return array[Math.floor(Math.random() * array.length)];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment