Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 567 Bytes

positional.md

File metadata and controls

43 lines (28 loc) · 567 Bytes
first
  const collection = [20, 3, 1]

  collection.first // Returns 20
second
  const collection = [20, 3, 1]

  collection.second // Returns 3
third
  const collection = [20, 3, 1]

  collection.third // Returns 1
last
  const collection = [20, 3, 1]

  collection.last // Returns 1