Skip to content

Instantly share code, notes, and snippets.

@jzazove
Created March 8, 2013 15:52
Show Gist options
  • Save jzazove/5117415 to your computer and use it in GitHub Desktop.
Save jzazove/5117415 to your computer and use it in GitHub Desktop.
Return random value of array
var randomValue = function(a){
return a[Math.floor(Math.random() * a.length)];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment