entries()

Add the index to every array element.

Signature

entries(): Array<[number, T]>

Description

The entries() method adds the index to every array element, creating an array of each index:element pair.

The source array isn’t changed.

Parameters

None

Return value

Type Description

Array

List of arrays of index:element pairs for each element of the source array.

Examples

['a', 'b', 'c'].entries()
[
  [
    0,
    "a"
  ],
  [
    1,
    "b"
  ],
  [
    2,
    "c"
  ]
]

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!