This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function getRandomItemsFromArray(sourceArray, numOfItems) { | |
| if (numOfItems > sourceArray.length) { | |
| throw new Error('Trying to get more items than the array length!!!'); | |
| } | |
| const shuffledArray = sourceArray.concat().sort((() => Math.random() - 0.5); | |
| return shuffledArray.slice(0, (numOfItems - 1)); | |
| } | |
| // The concat() function returns a copy of the sourceArray so that the original array is not modified. |
OlderNewer