array →
skip-first-elements(
    count: integer
) → array

Omits the requested number of elements from the start of the input enumerable and returns the remainder. Returns null when the input is not an enumerable, is a string, or the count is negative.

Parameters

Name Type Required Description
count integer Yes Number of elements to omit from the start of the input.

Examples

{1, 2, 3} | skip-first-elements(2)  {3}

Kind: Function
Scope: array
Aliases: skip-first


This site uses Just the Docs, a documentation theme for Jekyll.