Skip to content

Instantly share code, notes, and snippets.

@lepture
Created February 12, 2014 10:36
Show Gist options
  • Save lepture/8953158 to your computer and use it in GitHub Desktop.
Save lepture/8953158 to your computer and use it in GitHub Desktop.
Random a choice.
function random(obj) {
var keys = Object.keys(obj)
var choice = keys[Math.floor(Math.random() * (keys.length + 1))];
return obj[choice]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment