function tailimport { tail } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/array.js"; tail(array)Gets all but the first element of array. Examples_.tail([1, 2, 3]); // => [2, 3] ParametersarrayThe array to query.