The _.drop()
method in Lodash
creates a slice of an array by dropping the n
number of elements from the beginning of the array.
_.drop(array, n)
This method accepts the following parameters:
array
: This is the array that needs to be sliced.n
: This is the number of elements that need to be dropped.This method returns a slice of an array.
Let’s look at an example of the _.drop()
method in the code snippet below:
In the HTML tab:
lodash
script.In the JavaScript tab:
n
and initialize it with 3._.drop()
method to drop n
elements from the beginning of the array.We see a slice in which n
number of elements have been dropped from the beginning of the array.