Returns the object at the position defined by a path
Summary (oneliner)
useful when working with nested data structures.
the path defines the way to the object . the given object will be returned
given an array like this:
[
[
{
"name": "alyx"
},
{
"name": "eli"
}
],
[
{
"name": "gordon"
}
]
]
a path of 0.1
will result in this array:
[
{
"name": "alyx"
},
{
"name": "eli"
}
]
Documentation (markdown)
Issues
Example patch id
Youtube ids (comma seperated)
Caniuse query
Inputs
Array (Array)
Path (String)
the path
Outputs
Output (Object)
the object
Found (boolean Number)
Changelog
cloned op from Ops.Json.ObjectGetObjectByPath 2021-01-08 - cables | |
Ops.User.cables.ArrayGetObjectByPath renamed to Ops.Json.ArrayGetObjectByPath 2021-01-08 - cables |