- Is the randomness fair?
- Yes — crypto.getRandomValues gives true 50/50 flips. More random than a physical coin (real coins have slight bias from manufacturing).
- Can I use a seed?
- Yes — provide any seed and the sequence is reproducible. Useful for demos and deterministic tests.
- What's the tally for?
- Shows heads vs tails count plus the raw sequence. Useful for illustrating the law of large numbers — flip 10,000 times and see the ratio approach 50/50.
- Why would anyone flip N times?
- Probability class demos, hobby simulations, or settling disputes where 'one flip' feels too arbitrary. N=5 with majority rule is a more stable decision.