FAQ Topic - How do I generate a random integer from 1 to N?
- From: "FAQ server" <javascript@xxxxxxxxxxxxxx>
- Date: Fri, 29 Jun 2007 23:00:02 +0000
-----------------------------------------------------------------------
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.
.
- Prev by Date: Re: Embed image in html with ajax
- Next by Date: HTML to Javascript
- Previous by thread: Embed image in html with ajax
- Next by thread: HTML to Javascript
- Index(es):
Relevant Pages
|