How can I generate a random whole number between two specified variables in Javascript, e.g. x=4 and y=8 would output any of 4,5,6,7,8?
|
2
|
|
|
|
|
|
There are some examples on the Mozilla Developer Center page:
Here's the logic behind it. It's a simple rule of three:
Now, we'd like a number between
We can use the
This gives:
We may now apply
So, in order to find
Don't forget to add
That was the first function from MDC. The second one, returns an integer between
Now, the above equation becomes:
Which may yield
|
||||
|
|
|
breakdown: We are returning a function (borrowing from functional programming) that when called, will return a random number between the the values a and b used to construct it. (a is lower number, b is greater number)
Math.random returns a random double between 0 and 1. So multiplying it by the smaller number will give us a range we want (the difference between a and b).
Math.floor rounds the number down to the nearest int. So we now have all the ints between 0 and b-a.
a is our lower value the difference between the two numbers, so after adding that, we will get numbers between a and b. :D If you pass in a non-int value, you'll get slightly different (undesirable) behavior. ;D |
|||
|
|
|
|
Doing a Google search for "javascript random number" yields the following web page which explains how to do it: |
||
|
|
|
|
|
||
|
|
|
|
|
||
|
|
