Skip to content

Instantly share code, notes, and snippets.

@woile
Created June 14, 2021 13:32
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 woile/e804295515b9427fff146b73591529b3 to your computer and use it in GitHub Desktop.
Save woile/e804295515b9427fff146b73591529b3 to your computer and use it in GitHub Desktop.
/**
* returns a random element from the list
* items: Array
*/
function getRandom(items) {
return items[Math.floor(Math.random() * items.length)];
}
getRandom(["asc", "desc"])
getRandom([
{id: 1, title: "terminator"},
{id: 2, title: "titanic"}
]
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment