Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,907 questions

51,839 answers

573 users

How to select N reservoir items randomly from an array in JavaScript

2 Answers

0 votes
function selectReservoir(array, N) {
    const reservoir = array.sort(() => 0.5 - Math.random());

    return reservoir.slice(0, N);;
}

var array = [4, 9, 14, 96, 13, 0, 3, 99, 19, 2, 80, 1, 7];
const N = 5;

const reservoir = selectReservoir(array, N);

console.log(reservoir);



/*
run:

[ 4, 80, 1, 3, 96 ]

*/

 



answered Feb 4, 2024 by avibootz
edited Feb 4, 2024 by avibootz
0 votes
function selectReservoir(array, N) {
    return array.sort(() => 0.5 - Math.random()).slice(0, N);
}
 
var array = [4, 9, 14, 96, 13, 0, 3, 99, 19, 2, 80, 1, 7];
const N = 5;
 
const reservoir = selectReservoir(array, N);
 
console.log(reservoir);
 
 
 
/*
run:
 
[ 3, 80, 96, 14, 9 ]
 
*/

 

 



answered Feb 4, 2024 by avibootz
edited Feb 4, 2024 by avibootz

Related questions

1 answer 111 views
2 answers 143 views
2 answers 144 views
2 answers 121 views
2 answers 148 views
2 answers 134 views
...