take()

Get an Array with the first Number of Array values.

Signature

take(count: Number): Array<T>

Description

The take() method takes the first count values from the Array and returns them in an Array. If there are fewer values than count in the Array, all Array values are returned in the Array.

Parameters

Parameter Type Required Description

count

Number

Yes

Number of values that you want to return from the start of the Array.

Return value

Type Description

Array

Array with the first count values from the calling array.

Examples

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

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!