Skip to content

Instantly share code, notes, and snippets.

@mitchallen
Created January 10, 2022 03:23
Show Gist options
  • Select an option

  • Save mitchallen/b26b48a8e6866dca6765d652e71a10de to your computer and use it in GitHub Desktop.

Select an option

Save mitchallen/b26b48a8e6866dca6765d652e71a10de to your computer and use it in GitHub Desktop.
Weighted Coin Flip
// Author: Mitch Allen
// File: weighted-coinflip.js
// weightedCoinFlip - return a random 1 or 0 based on weight
export const weightedCoinFlip = (weight) => Math.random() <= weight;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment