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

Possible Duplicate:
Generating random numbers in Javascript

How do I get a random number between −10 and 10 in JavaScript?

share|improve this question
5  
what have you tried? – Mitch Wheat Aug 29 '10 at 9:14
3  
I'm guessing they've tried asking on the site meant as the premier site for asking programming-related question, despite the propensity for some of its members to ask inane questions before deigning to accept them into the brotherhood. Seriously, is it necessary to question everyone's motives? :-) Some people just need help and maybe haven't the knowledge or experience to try anything themselves first. We were all newbies once although I have to admit it was a long time ago for myself, lost in the dim dark past. – paxdiablo Aug 29 '10 at 9:18
3  
Seems to be a duplicate of stackoverflow.com/questions/1527803/… – Antti Sykäri Aug 29 '10 at 9:37
4  
How is this "not a real question" that needs closing? It seems clearly, if concisely, expressed and is a real, if basic, programming problem. It is eminently answerable. – edeverett Aug 29 '10 at 9:50
3  
@Mitch Wheat, @Mark Trapp, @kiamlaluno, @Antti Sykäri, @Darin Dimitrov. Please explain what is "ambiguous, vague, incomplete, or rhetorical and cannot be reasonably answered in its current form" about "How do I get a random number between −10 and 10 in JavaScript?". From my point of view the question is a very good example on how to write a in a very clear way. – Hendrik Brummermann Aug 29 '10 at 9:59
show 7 more comments

marked as duplicate by interjay, Martin Smith, bmargulies, ho1, Michael Petrotta Aug 31 '10 at 2:18

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 12 down vote accepted
var min = -10;
var max = 10;
// and the formula is:
var random = Math.floor(Math.random() * (max - min + 1)) + min;
share|improve this answer
2  
You closed the question for being: "ambiguous, vague, incomplete, or rhetorical and cannot be reasonably answered in its current form." Yet you answered it here. Can you you explain why? – edeverett Aug 29 '10 at 10:05
1  
@edeverett, I voted to close as exact duplicate to stackoverflow.com/questions/1527803/… and not as not a real question but unfortunately it was 3 vs 2 votes. If I was to vote to reopen this question it would be just to close it with the proper reason. – Darin Dimitrov Aug 29 '10 at 10:10

jQuery: $.randomBetween(minValue, maxValue);

share|improve this answer
3  
+1 for the jQuery answer – RC. Aug 29 '10 at 9:16
13  
@KennyTM, funny :) – RC. Aug 29 '10 at 9:19
@Kenny, I laughed so much I damn near cried. Surely that's a touch-up job, I can't imagine that voting pattern being real :-) – paxdiablo Aug 29 '10 at 9:22
6  
-1 For the jQuery overkill here. What's next adding .add() and .sub() to jQuery? >_> People should learn the JavaScript language, not the jQuery library... – Ivo Wetzel Aug 29 '10 at 9:38
show 2 more comments

For example:

var min = -10;
var max = 10;
Math.floor(Math.random() * (max - min + 1) + min)

see http://thepenry.net/jsrandom.php for some comparaison of Math.floor, Math.ceil and Math.round

share|improve this answer

Using not more than a simple Google search,

var randomnumber=Math.floor(Math.random()*21)-10

Math.random()*21)returns a number between 0 and 20. Substracting 10 would yield a random number between -10 and 10.

My advice: try to Google first, and than ask about the results, e.g.:

What is the best way to get a random number? I've googled and found methods X and Y, and wondered which is best for purpose Z.

share|improve this answer

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