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 TypeScript

1 Answer

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

 





answered Feb 4 by avibootz
...