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,913 questions

51,845 answers

573 users

How to get multiple random elements from an array in Node.js

1 Answer

0 votes
function getMultipleRandomElements(arr, num_elements) {
    // 0.5 - Math.random()) = -0.5...0.5
    // sort order will be set to increase or decrease
  	const shuffled = [...arr].sort(() => 0.5 - Math.random());

  	return shuffled.slice(0, num_elements);
}

const arr = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k'];

console.log(getMultipleRandomElements(arr, 2)); 
console.log(getMultipleRandomElements(arr, 3)); 
console.log(getMultipleRandomElements(arr, 4)); 

  
  
  
  
/*
run:

[ 'h', 'g' ]
[ 'd', 'e', 'f' ]
[ 'f', 'g', 'j', 'e' ]

*/

 



answered Jun 1, 2022 by avibootz

Related questions

1 answer 111 views
1 answer 147 views
1 answer 113 views
2 answers 126 views
1 answer 96 views
...