Const
Returns an OperationFunction that skips the first count elements from the source.
count
Type of items in the source.
Number of elements to skip.
An OperationFunction that skips the first count elements from the source.
const result = skip<number>(2)([1, 2, 3, 4]);console.log([...result]); // [3, 4] Copy
const result = skip<number>(2)([1, 2, 3, 4]);console.log([...result]); // [3, 4]
Returns an OperationFunction that skips the first
countelements from the source.