arrays.drop drop(array, [count=1]) Remove N items from the beginning of the input array Arguments array (Array): input array [count=1] (number): number of items to drop Returns (Array): input array sans the dropped items Example const result = arrays.drop([1, 2, 3], 2); console.log(result); > [3]