🧩 Data & Tables
Structured data cleanup, analysis, transformation, and table workflows
Tail Items
Return all but the first array item using lodash _.tail
Data & TablesTake Items
Take the first N items using lodash _.take
Data & TablesTake Right Items
Take the last N items using lodash _.takeRight
Data & TablesSorted Unique By
Remove duplicates from a sorted array using lodash _.sortedUniqBy
Data & TablesRemove By Predicate
Remove items that match a predicate using lodash _.remove
Data & TablesReverse Array
Reverse an array using lodash _.reverse
Data & TablesIntersection Arrays
Find common values across multiple arrays using lodash _.intersection
Data & TablesJoin Array
Join array items into a single string with a custom separator
Data & TablesPull Values
Remove specific values from an array using lodash _.pull
Data & TablesLast Item
Get the last item from an array using lodash _.last
Data & TablesNth Item
Get the item at a specific index using lodash _.nth
Data & TablesInitial Items
Get all elements except the last using lodash _.initial
Data & Tables