returns the array at the position defined by a path
Summary (oneliner)
useful when working with nested data structures.
the path defines the way to the array. the given array will be returned
given an object like this:
{
"data": {
"persons": [
{
"name": "alyx"
},
{
"name": "eli"
},
{
"name": "gordon"
}
]
}
}
a path of data.persons
will result in this array:
[
{
"name": "alyx"
},
{
"name": "eli"
},
{
"name": "gordon"
}
]
Documentation (markdown)
Issues
Example patch id
Youtube ids (comma seperated)
Caniuse query
Inputs
Object (Object)
json object
Path (String)
path to array (i.e. data.numbers)
Outputs
Output (Array)
array of values
Found (boolean Number)