📄️ extract
The extract() function takes an array of objects and a key as arguments and returns an array containing the values of the specified key from each object in the input array.
📄️ countOccurrences
The countOccurrences () function counts the number of occurrences of a value in an array..
📄️ unique
The unique() function removes duplicates from an array.
📄️ shuffle
The shuffle() function shuffles an array in place using the Fisher-Yates shuffle algorithm.
📄️ chunk
The chunk() function splits an array into chunks of a specified size.
📄️ incluesArray
The incluesArray() function checks if an array includes at least one item of another array.