Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created November 28, 2018 16:14
Show Gist options
  • Save Farmatique/d5b2f89d899342e9939f07d699ba1a73 to your computer and use it in GitHub Desktop.
Save Farmatique/d5b2f89d899342e9939f07d699ba1a73 to your computer and use it in GitHub Desktop.
JS random number from set
function getRndmFromSet(set)
{
var rndm = Math.floor(Math.random() * set.length);
return set[rndm];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment