Skip to content

Instantly share code, notes, and snippets.

@Protonk
Created August 8, 2013 14:18
Show Gist options
  • Select an option

  • Save Protonk/6184973 to your computer and use it in GitHub Desktop.

Select an option

Save Protonk/6184973 to your computer and use it in GitHub Desktop.
function randme(arr) {
var rand = parseInt(Math.random().toString().charAt(3), 10);
return arr[rand % arr.length];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment