just like this:
Math.floor(Math.Random * num);
Can someone explain please?
|
just like this: Can someone explain please? |
|||||||
|
|
Multiplying this by n gives a floating point number between 0 (inclusive) and n (exclusive).
|
|||
|
|
|
Breaking
|
||||
|
|
|
|
|||
|
|
|
Why would I combine You combine them because otherwise it would return a float. Using Math.floor makes sure that it is a whole number inside of the range specified. Math.random returns a flat in between 0 and 1. Multiplying it by your Behind The Scenes: RANDOM NUMBER -> .35 -> Multiplied by max ( Keep in mind, You can check out this link for more information: http://www.javascriptkit.com/javatutors/randomnum.shtml Tada :) |
||||
|
|
|
We use
|
|||
|
|