Array slice with open start

Setup

Selector: $[:2]

["first", "second", "third", "forth", "fifth"]

Results

Consensus

[
  "first",
  "second"
]

Other responses

Clojure (json-path) ¹

"third"

Elixir (jaxon)

[]

Golang (github.com-oliveagle-jsonpath) ¹

[
  "first",
  "second",
  "third"
]

Raku (JSON-Path)

Not supported

JSON path parse error at position 1

Footnotes