function dropimport { drop } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/array.js"; drop(array,n,guard,)Creates a slice of array with n elements dropped from the beginning. Examples_.drop([1, 2, 3]); // => [2, 3] _.drop([1, 2, 3], 2); // => [3] _.drop([1, 2, 3], 5); // => [] _.drop([1, 2, 3], 0); // => [1, 2, 3] ParametersarrayThe array to query. nguard