Skip to content

Instantly share code, notes, and snippets.

@benjamingsmith
Last active October 15, 2015 18:09
Show Gist options
  • Save benjamingsmith/4e0337b7025b78f25df1 to your computer and use it in GitHub Desktop.
Save benjamingsmith/4e0337b7025b78f25df1 to your computer and use it in GitHub Desktop.
Choose a random item from an array
$.rand = function(arg) {
if ($.isArray(arg)) {
return arg[$.rand(arg.length)];
} else if (typeof arg === "number") {
return Math.floor(Math.random() * arg);
} else {
return 4;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment