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