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

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,037 questions

40,897 answers

573 users

How to select N reservoir items randomly from an array in Node.js

1 Answer

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

 





answered Feb 4 by avibootz
...