Want to hire a development team?
No Images Added Yet

Unique Random Numbers

Rated1.0/5 (1 ratings)
Add to Favorites
Publisher
JavaScript to pick up a number of unique random elements from an array.
Product Details

This JavaScript picks up a number of unique random elements from an array. For example; if you have an array myArray consisting of 10 elements and want to pick 5 unique random elements. Suppose initially myArray[3] is picked randomly, then myArray[3] should not be picked again. If you want to pick 4 numbers, call the function like: pickNums(4).

Report this Listing
Price
Free
Licence Type
Free
Views
3,865
Submitted on
6th August 2002
Last Updated
11th February 2009

You May Also Like

Cloud Services You May Like

Cost optimization by replacing IPv4 with IPv6 and configuring DNS for it

Plan and configure IPv6 addressing and DNS so you can reduce IPv4 usage and related costs.

AWS S3 Glacier Low Cost Deep Archive configurations

Configure S3 Glacier Deep Archive for ultra low-cost long term data storage.

Configure EC2 Auto Scaling

Setting up EC2 Auto Scaling to automatically adjust the number of servers based on traffic, performance, and demand.

Help/Fix on identifying the most cost effective AWS spot instances based on instance type and region (1 Hour)

One hour of help to choose the most cost effective AWS Spot instances for your workload.

User Reviews

Please rate the listing and tell the world know what do you think about the listing.
(1 ratings)
Average User Rating: 1.0/5
Very long winded code.
Reviewed byAnonymousonMon, 17th April 2006
Rating 1 - Poor
An extremely long way around way to do it when sorting the array into random order and then reading the resultant entries sequentially can be done in two lines of code. myArray = new Array('1','2','3','4','5' ,'6'); // code to randomize array follows function randOrd(){return (Math.round(Math.random() )-0.5); } myArray.sort( randOrd ); // and from here you just read as many random selections you want from the front of the array.
Displaying 1-1 out of 1 reviews
View All Reviews