Skip to content

Instantly share code, notes, and snippets.

@cfv1984
Last active August 29, 2015 14:15
Show Gist options
  • Save cfv1984/2b0f24c081c0be35f8e7 to your computer and use it in GitHub Desktop.
Save cfv1984/2b0f24c081c0be35f8e7 to your computer and use it in GitHub Desktop.
function weightedRandomBoolean(odds){
var odds, rand;
rand = Math.random();
return rand < (odds / 100)? true : false;
}
function getFirstNPercentOfTime(number_1, number_2, odds){
return weightedRandomBoolean(odds)? number_1 : number_2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment