Is there a way to generate a random number in range from 1 to 6 (1,2,3,4,5,6) in JS? How to do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
If you wanted to get between 1 and 6, you would put
Try that and see if it works for you |
|||
|
|
What it does "extra" is it allows random intervals that do not start with 1. So you can get a random number from 10 to 15 for example. Flexibility. |
|||||||||||||||||
|
|
Other solutions:
|
||||
|
|
|
|||||||||||||||||
|
|
Math is not my strong point, but I've been working on a project where I needed to generate a lot of random numbers between both positive and negative.
E.g
Of course, you can also add some validation to make sure you don't do this with anything other than numbers. Also make sure that min is always less than or equal to max. |
|||
|
|
