Data Processing
Remove duplicates from an array using lodash _.uniq
uniq-arrayData Processing
Remove duplicates from an array using lodash _.uniqBy with a property path
uniq-byData Processing
Remove duplicates using lodash _.uniqWith and deep equality
uniq-withData Processing
Split grouped arrays using lodash _.unzip
unzip-arraysData Processing
Remove specified values from an array using lodash _.without
without-valuesData Processing
Compute the symmetric difference of arrays using lodash _.xor
xor-arraysData Processing
Combine arrays by index using lodash _.zip
zip-arraysData Processing
Create an object from keys and values using lodash _.zipObject
zip-objectData Processing
Find common values across multiple arrays using lodash _.intersection
intersection-arraysData Processing
Join array items into a single string with a custom separator
join-arrayData Processing
Get the item at a specific index using lodash _.nth
nth-itemData Processing
Remove items that match a predicate using lodash _.remove
remove-by-predicate