Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
3  
Math.floor( Math.random() * 7 ) – Amjad Masad Feb 10 '11 at 16:45
4  
Sure.. Math.floor(Math.random()*6+1) – Amjad Masad Feb 11 '11 at 0:21
1  
Nabil Kadimi wrote an article on how to generate negative random numbers too. – madc Sep 4 '12 at 13:44
4  
And still you NEVER get a random number ;) because random doesn't exists – Bondye Sep 4 '12 at 13:49
1  
-1: What prior research have you performed? What have you tried? – Lightness Races in Orbit Oct 29 '12 at 17:29

5 Answers

up vote 120 down vote accepted

If you wanted to get between 1 and 6, you would put

Math.floor(Math.random() * 6) + 1

Try that and see if it works for you

share|improve this answer
function randomFromInterval(from,to)
{
    return Math.floor(Math.random()*(to-from+1)+from);
}

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.

share|improve this answer
4  
This is a much better solution! Thanks! – jakenoble Oct 26 '12 at 11:20
3  
this is also great because if someone doesn't include the to arg, the from arg doubles as the max – Jason Feb 6 at 1:53
2  
Thanks for this answer. The code made the logic easy to understand. – brack Feb 27 at 18:11
Just by reading, it seems to me this function spans beyond "to". If from=5 and to=5, I'm reading Math.floor(rand*(5-5+1)+5) = Math.floor(rand*(1)+5) = [5,6] instead of [5,5]. For from=5, to=6 I'm reading Math.floor(rand*(2)+5) = [5,7]. Am I mistaken? Is Math.Random() not both 0 and 1 inclusive? – Andreas Larsen Apr 8 at 18:45
Hello. This is from MDN: Returns a floating-point, pseudo-random number in the range [0, 1) that is, from 0 (inclusive) up to but not including 1 (exclusive), which you can then scale to your desired range. (developer.mozilla.org/en-US/docs/JavaScript/Reference/…) – Francisc Apr 9 at 20:12

Other solutions:

  • (Math.random() * 6 | 0) + 1
  • ~~(Math.random() * 6) + 1
share|improve this answer
perfect solution! :) – Mahdi Oct 29 '12 at 11:43
var x = 6; // can be any number
var rand = Math.floor(Math.random()*x) + 1;
share|improve this answer
1  
Indeed. I forgot rand was 0 inclusive. Fixed it. – ryebr3ad Feb 10 '11 at 16:56
That's part Pseudocode... someone might think it is real and try to use it like that. – gravityboy Feb 10 '11 at 18:23
17  
@gravityboy What are you talking about? If someone can't substitute a number for [pick a number...], they might not be suitable as a programmer. – ryebr3ad Feb 10 '11 at 18:53
@ryebr3ad -1! it's said in javascript not in pseudo code and also not all readers are accomplished programmers. Many are beginners! – Stephane Kouakou Oct 21 '12 at 19:29
2  
@StephaneKouakou I imagined you screaming everything you typed. MINUS ONE! MANY ARE BEGINNERS! Again, I think of it as Darwinism in action if anyone sees "[pick a number]" and tries to run that as code, but my question has already been edited so it's a moot point now. – ryebr3ad Jan 30 at 20:06

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.

function randomBetween(min, max) {
    if (min < 0) {
        return min + Math.random() * (Math.abs(min)+max);
    }else {
        return min + Math.random() * max;
    }
}

E.g

randomBetween(-10,15)//or..
randomBetween(10,20)//or...
randomBetween(-200,-100)

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.