Module

x/lodash_es/mod.ts>tail

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

Gets all but the first element of array.

Examples

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

Parameters

array

The array to query.