Returns a new array with the first count elements removed.
count
The source array.
Number of elements to drop (must be a non-negative integer).
dropArray([1, 2, 3, 4], 2) // => [3, 4]dropArray([1, 2], 5) // => [] Copy
dropArray([1, 2, 3, 4], 2) // => [3, 4]dropArray([1, 2], 5) // => []
Returns a new array with the first
countelements removed.