# Tail Items

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

> Canonical page: https://elysiatools.com/en/tools/tail-items

- **Category:** Data Processing

- **Keywords:** array, tail, slice, drop, lodash

## Overview

Return every item after the first element in a JSON array.

**Highlights:**
- Uses lodash `_.tail`
- Preserves array ordering
- Returns the tail as JSON

**Example:**
- Array: `["a", "b", "c"]`
- Result: `["b", "c"]`

## Inputs

- **Array** (textarea): Enter a JSON array

## When to use

- When you need to exclude the first element from a JSON array without writing code.
- For processing data lists where the first item is a header or metadata that should be removed.
- As a simple solution for array manipulation in web applications using lodash utilities.

## How it works

- Enter a valid JSON array into the input textarea.
- The tool applies the lodash _.tail function to the array.
- It outputs the resulting array as JSON, maintaining the original sequence.

## Use cases

- Removing column headers from JSON data arrays for analysis.
- Skipping the first item in a list during data processing or transformation.
- Quick array slicing in frontend development without backend code.

## Frequently asked questions

### What does the Tail Items tool do?

It returns all elements of a JSON array except the first one.

### Is the array order preserved?

Yes, the tool maintains the original order of elements.

### Do I need to install any software?

No, it runs directly in your web browser.

### What input format is required?

The input must be a valid JSON array.

### What is lodash _.tail?

It's a JavaScript utility function that returns all but the first element of an array.

## Related tools

- [Find Key](https://elysiatools.com/en/tools/find-key): Find the first matching key using lodash _.findKey
- [Group By](https://elysiatools.com/en/tools/group-by): Group items by a derived key using lodash _.groupBy
- [Head Item](https://elysiatools.com/en/tools/head-item): Get the first element of array using lodash _.head
- [Index Of](https://elysiatools.com/en/tools/index-of): Find the index of a value in array using lodash _.indexOf
- [Initial Items](https://elysiatools.com/en/tools/initial-items): Get all elements except the last using lodash _.initial
- [Nth Item](https://elysiatools.com/en/tools/nth-item): Get the item at a specific index using lodash _.nth
- [Remove By Predicate](https://elysiatools.com/en/tools/remove-by-predicate): Remove items that match a predicate using lodash _.remove
- [Sorted Index](https://elysiatools.com/en/tools/sorted-index): Find the insertion index in a sorted array using lodash _.sortedIndex

## Samples

- [Grafana Advanced Application Samples](https://elysiatools.com/en/samples/grafana-samples): Comprehensive Grafana samples covering advanced dashboard design, alerting configurations, data source integrations, and plugin development
- [QR Code Samples](https://elysiatools.com/en/samples/qrcode-samples): Sample QR code images for testing QR code reading and generation tools
- [D3.js Data Visualization Samples](https://elysiatools.com/en/samples/d3js-data-visualization): Comprehensive D3.js data visualization examples including charts, maps, animations, and interactive visualizations
- [Rome JavaScript Toolchain Samples](https://elysiatools.com/en/samples/rome): Rome JavaScript toolchain examples including configuration, linting, formatting, bundling, and project management
