Skip to content

Instantly share code, notes, and snippets.

@olekenneth
Created August 25, 2016 08:11
Show Gist options
  • Select an option

  • Save olekenneth/c6f813b159d5c533aedc79736fb20f63 to your computer and use it in GitHub Desktop.

Select an option

Save olekenneth/c6f813b159d5c533aedc79736fb20f63 to your computer and use it in GitHub Desktop.
var testRandom = function(times, every) {
var i = 0;
var number = 0;
while(times > i) {
if (Math.floor(Math.random() * every) === (every - 1)) {
number++;
}
i++;
}
console.log("Picked: ", number, "Ran: ", i);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment