Skip to content

Instantly share code, notes, and snippets.

@kt3k
Last active August 29, 2015 14:08
Show Gist options
  • Save kt3k/60820464078095f6255c to your computer and use it in GitHub Desktop.
Save kt3k/60820464078095f6255c to your computer and use it in GitHub Desktop.
random functions
var dice = function (n) {
return Math.floor(Math.random() * n);
};
var coinToss = function () { return dice(2); };
var sample = function (array) { return arguments[dice(arguments.length)]; };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment