Module

x/lodash_es/src/array.js>tail

lodash for deno use
Latest
function tail
import { tail } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/array.js";

Gets all but the first element of array.

Examples

_.tail([1, 2, 3]); // => [2, 3]

Parameters

array

The array to query.