You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to have a way of retrieving all keys and or values under some defined level, as for example { "Name": "X" "PN": 12345678, "House": { "Address": "some address", "Size" : "some Size", "Rooms": 5, }, }
here using the desired method on level 1 will give a list of all keys, which is ' ["Name", "PN", "House"]'
and on level 2 will give ["Address", "Size", "Rooms"], Note that it's possible to implement the same behavior on values pairs.
The text was updated successfully, but these errors were encountered:
Is it possible to have a way of retrieving all keys and or values under some defined level, as for example
{ "Name": "X" "PN": 12345678, "House": { "Address": "some address", "Size" : "some Size", "Rooms": 5, }, }
here using the desired method on level 1 will give a list of all keys, which is ' ["Name", "PN", "House"]'
and on level 2 will give ["Address", "Size", "Rooms"], Note that it's possible to implement the same behavior on values pairs.
The text was updated successfully, but these errors were encountered: