drop()

Drop elements given a count of elements to drop.

Signature

drop(count: Number): Array<T>

Description

The drop() method drops count array elements starting at element[0].

The source array isn’t changed.

Parameters

Parameter Type Required Description

count

Number

Yes

Number of elements to drop. If count is greater than the array length, an empty array is returned.

Return value

Type Description

Array

An array with count elements dropped.

Examples

[1, 2, 3, 4, 5].drop(2)
[
  3,
  4,
  5
]

Is this article helpful? 

Tell Fauna how the article can be improved:
Visit Fauna's forums or email docs@fauna.com

Thank you for your feedback!