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