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:
Javascript/html: How to generate random number between number A and number B?

Herren und Mensch!

Ich habbe eine question for you regardings the: Randomly returning a number between a/from the range (from -> to), using the infomous Math.round()?

How is this achiveable in the controversial JavaScript scripting language supported by major number of Web-browsers?

share|improve this question
2  
"Herren und Mensch" is not a valid german salutation :) – schnaader Aug 8 '11 at 14:05
yes, I know... I'm bosnian! – Zlatan Omerović Aug 8 '11 at 14:06
3  
This has to be the strangest thing I've read all day. – tskuzzy Aug 8 '11 at 14:07

marked as duplicate by user113716, Bill the Lizard Aug 8 '11 at 14:15

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.

2 Answers

up vote 5 down vote accepted

That should return a random number between min and max:

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

will give you a random number between from and to (not inclusive for to).

share|improve this answer

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