Array slice

Setup

Selector: $[1:3]

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

Results

Consensus

[
  "second",
  "third"
]

Other responses

Clojure (json-path) ¹

"second"

Elixir (jaxon)

[]

Golang (github.com-oliveagle-jsonpath) ¹

[
  "second",
  "third",
  "forth"
]

Raku (JSON-Path)

[
  "second",
  "third",
  "forth"
]

Rust (jsonpath)

[
  "second",
  "third",
  "forth"
]

Footnotes