Skip to content

Instantly share code, notes, and snippets.

@jordanhudgens
Created September 13, 2018 16:03
Show Gist options
  • Save jordanhudgens/276132c6b7b6745a81b0fb5e053846d0 to your computer and use it in GitHub Desktop.
Save jordanhudgens/276132c6b7b6745a81b0fb5e053846d0 to your computer and use it in GitHub Desktop.
const sample = arr => {
const randomIndex = Math.floor(Math.random() * arr.length);
return arr[randomIndex];
};
sample([1, 2, 3]); // 3
sample([90, 500, 100, -20]); // 500
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment