Creates a slice of array with n elements dropped from the beginning.
array
n
The array to query.
The number of elements to drop.
Returns the slice of array.
5.16.0
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] Copy
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]
Creates a slice of
array
withn
elements dropped from the beginning.