Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialethan miles
1,970 PointsWhy can't we use Math.round instead of Math.floor for the dice roll?
I am working on the create a random number from the java scripts basics course and was wondering why Dave used Math.floor( Math.random() * 6) + 1; instead of Math.round( Math.random() * 6); . it seemed to work fine for me either way just curious if there was a negative to using the latter method, or if it was just to show another method. Thanks in advance for any help!
1 Answer
Steven Parker
231,236 PointsIf you keep "rolling" using your "round" formula, you'll find that you will occasionally roll a "0". The distribution is also not uniform, and the chances of rolling a "0" or a "6" will only be half as likely as rolling one of the other numbers.
By using the "floor" formula, you will get only 1 - 6, and the chances of each number are about even.
ethan miles
1,970 Pointsethan miles
1,970 PointsOh gotcha thanks I appreciate the answer!
brevans26
15,198 Pointsbrevans26
15,198 PointsYou are my idol! hahah