🧩 Data & Tables

Structured data cleanup, analysis, transformation, and table workflows

Back to Tools

Tail Items

Return all but the first array item using lodash _.tail

Data & Tables

Take Items

Take the first N items using lodash _.take

Data & Tables

Take Right Items

Take the last N items using lodash _.takeRight

Data & Tables

Sorted Unique By

Remove duplicates from a sorted array using lodash _.sortedUniqBy

Data & Tables

Remove By Predicate

Remove items that match a predicate using lodash _.remove

Data & Tables

Reverse Array

Reverse an array using lodash _.reverse

Data & Tables

Intersection Arrays

Find common values across multiple arrays using lodash _.intersection

Data & Tables

Join Array

Join array items into a single string with a custom separator

Data & Tables

Pull Values

Remove specific values from an array using lodash _.pull

Data & Tables

Last Item

Get the last item from an array using lodash _.last

Data & Tables

Nth Item

Get the item at a specific index using lodash _.nth

Data & Tables

Initial Items

Get all elements except the last using lodash _.initial

Data & Tables