FAQ Topic - How do I generate a random integer from 1 to N?



-----------------------------------------------------------------------
FAQ Topic - How do I generate a random integer from 1 to
N?
-----------------------------------------------------------------------

Method Math.random() returns a value R such that 0 <= R < 1.0 ; therefore

function Random(x) { return Math.floor(x*Math.random()) }

gives a random integer in the range from 0 to x-1 inclusive; use
` Random(N)+1 ` for 1 to N.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/a28c5c66-c42f-4082-9b71-9a5ee4652cd7.asp

http://docs.sun.com/source/816-6408-10/math.htm

How to Deal and Shuffle, See In:

http://www.merlyn.demon.co.uk/js-randm.htm


===
Postings such as this are automatically sent once a day. Their
goal is to answer repeated questions, and to offer the content to
the community for continuous evaluation/improvement. The complete
comp.lang.javascript FAQ is at http://jibbering.com/faq/index.html.
The FAQ workers are a group of volunteers.

.



Relevant Pages