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?
|
|
|||||||
|
|
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 for getting integers, you could use You could use
With With
You can't use |
|||||||||||||||||
|
|
|||||||||
|
usage:
breakdown: We are returning a function (borrowing from functional programming) that when called, will return a random integer between the the values (bottom is lower number, top is greater number)
The code in the previous example gave us an integer in the range NOTE: If you pass in a non-integer value or the greater number first you'll get undesirable behavior, but unless anyone requests it I am not going to delve into the argument checking code as its rather far from the intent of the original question. |
|||||||||
|
|
For a random integer with a range, try:
|
|||
|
|
|
After generating a random number using a computer program, it is still consider as a random number if the picked number is a part or the full one of the initial one. But if it was changed, then mathematicians are not accept it as a random number and they can call it a biased number. But if you are developing a program for a simple task, this will not be a case to consider. But if you are developing a program to generate a random number for a valuable stuff such as lottery program, or gambling game, then your program will be rejected by the management if you are not consider about the above case. So for those kind of people, here is my suggestion: Generate a random number using
If you know how to read random number table to pick a random number, you know above process(multiplying by 1, 10, 100 and so on) is not violates the one that I was mentioned at the beginning.( Because it changes only the place of the decimal point.) Study the following example and develop it to your needs. If you need a sample [0,9] then floor of n*10 is your answer and if need [0,99] then floor of n*100 is your answer and so on. Now let enter into your role: You've asked numbers among specific range. (In this case you are biased among that range. - By taking a number from [1,6] by roll a die, then you are biased into [1,6] but still it is a random if and only if die is unbiased.) So consider your range ==> [78, 247] number of elements of the range = 247 - 78 + 1 = 170; (since both the boundaries are inclusive.
Note: In method one, first I created an array which contains numbers that you need and then randomly put them into another array. In method two, generate numbers randomly and check those are in the range that you need. Then put it into an array. Here I generated two random numbers and used total of them to maximize the speed of the program by minimizing the failure rate that obtaining a useful number. However adding generated numbers will also give some biassness. So I would recommend my first method to generate random numbers within a specific range. In both methods, your console will show the result.(Press f12 in Chrome to open the console) |
||||
|
|
Alternative if you are using Underscore.js you can use
|
||||
|
|
To test this function, and variations of this function, save the below HTML/JavaScript to a file and open with a browser. The code will produce a graph showing the distribution of one million function calls. The code will also record the edge cases, so if the the function produces a value greater than the max, or less than the min, you.will.know.about.it.
|
||||
|
|
