7

My data structure

    {
      "group": "fruits"
      "items": ["apple", "orange", "banana"]
    }

I need to pull first item from the "items" array without knowing the value. Is it possible?

Dipen Bhikadya
  • 3,318
  • 3
  • 21
  • 19

1 Answers1

10

I think I figured out the answer. I can use "nth(0)" to get item at index 0.

Dipen Bhikadya
  • 3,318
  • 3
  • 21
  • 19