Random Number Generation
Each die roll uses JavaScript's Math.random() function to generate truly random numbers within the specified range (1 to number of sides).
Dice Types
- • D4: 4-sided (tetrahedral)
- • D6: 6-sided (standard cube)
- • D8: 8-sided (octahedral)
- • D10: 10-sided (pentagonal)
- • D12: 12-sided (dodecahedral)
- • D20: 20-sided (icosahedral)
Uses
- • Board games and tabletop RPGs
- • Probability experiments
- • Decision making
- • Random number generation