Skip to content

Instantly share code, notes, and snippets.

@bobdobbalina
Last active March 23, 2021 18:28
Show Gist options
  • Save bobdobbalina/803a2ad70bc18c1c08831b14eb800ac0 to your computer and use it in GitHub Desktop.
Save bobdobbalina/803a2ad70bc18c1c08831b14eb800ac0 to your computer and use it in GitHub Desktop.
Javascript: Get random item from array
function random_item(items) {
return items[Math.floor(Math.random() * items.length)];
}
const items = [254, 45, 212, 365, 2543];
console.log(random_item(items));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment