array.first()

This method operates on an array. You typically fetch documents from a collection as a set, not an array. For the equivalent set method, see set instance methods.

For differences between sets and arrays, see Sets vs. arrays.

Get the first value in the Array.

Signature

first(): T | Null

Description

The first() method gets the first value in the Array.

Parameters

None

Return value

Type Description

Any

First Array value or null for an empty Array.

Examples

[1, 2].first()
1

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!